Fix crash when window too small with msg editor visible

This commit is contained in:
Joscha 2024-01-14 12:41:48 +01:00
parent a5b33440c5
commit 998a2f2ffd
3 changed files with 6 additions and 3 deletions

View file

@ -25,6 +25,9 @@ Procedure when bumping the version number:
### Removed
- Key binding to open present page
### Fixed
- Crash when window is too small while empty message editor is visible
## v0.8.0 - 2024-01-04
### Added

4
Cargo.lock generated
View file

@ -1477,8 +1477,8 @@ dependencies = [
[[package]]
name = "toss"
version = "0.2.1"
source = "git+https://github.com/Garmelon/toss.git?tag=v0.2.1#b01ee297d5bdbb3b28cafe2b5b130c2767667974"
version = "0.2.2"
source = "git+https://github.com/Garmelon/toss.git?tag=v0.2.2#761e8baeba09b923e2a409ea7df7bb363fc77fd5"
dependencies = [
"async-trait",
"crossterm",

View file

@ -17,7 +17,7 @@ thiserror = "1.0.56"
[workspace.dependencies.toss]
git = "https://github.com/Garmelon/toss.git"
tag = "v0.2.1"
tag = "v0.2.2"
[profile.dev.package."*"]
opt-level = 3