fix command line cursor bug

macos-click-through
Keith Simmons 5 years ago
parent 3f750b96dc
commit 850b23933b

2
Cargo.lock generated

@ -1094,7 +1094,7 @@ dependencies = [
[[package]] [[package]]
name = "neovide" name = "neovide"
version = "0.1.0" version = "0.4.0"
dependencies = [ dependencies = [
"anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
"async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",

@ -229,7 +229,7 @@ impl CursorRenderer {
} }
} }
if animating { if animating || self.command_line_delay != 0 {
REDRAW_SCHEDULER.queue_next_frame(); REDRAW_SCHEDULER.queue_next_frame();
} }

Loading…
Cancel
Save