Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into ratatui
Browse files Browse the repository at this point in the history
  • Loading branch information
boxdot committed Sep 14, 2023
2 parents 1681112 + 4063a61 commit 0eecf9e
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 11 deletions.
119 changes: 111 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ debug = true
dev = ["prost", "base64"]

[dependencies]
presage = { git = "https://github.com/whisperfish/presage", rev = "0.5.2" }
presage-store-sled = { git = "https://github.com/whisperfish/presage", rev = "0.5.2" }
presage = { git = "https://github.com/whisperfish/presage", rev = "db46e0d8dbb5e65bb4deeace4ea3502bacb8180f" }
presage-store-sled = { git = "https://github.com/whisperfish/presage", rev = "db46e0d8dbb5e65bb4deeace4ea3502bacb8180f" }

anyhow = "1.0.66"
async-trait = "0.1.58"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ fn draw_messages<B: Backend>(f: &mut Frame<B>, app: &mut App, area: Rect) {
prepare_receipts(app, height);

let Some(&channel_id) = app.channels.selected_item() else {
return
return;
};
let channel = app
.storage
Expand Down

0 comments on commit 0eecf9e

Please sign in to comment.