mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
Merge branch 'master' into scrollback
This commit is contained in:
commit
7c5585ff25
2 changed files with 5 additions and 0 deletions
|
@ -477,6 +477,10 @@ impl<N: Notify> Processor<N> {
|
||||||
window.hide();
|
window.hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if self.window_changes.hide {
|
||||||
|
window.hide();
|
||||||
|
}
|
||||||
|
|
||||||
self.window_changes.clear();
|
self.window_changes.clear();
|
||||||
self.wait_for_event = !terminal.dirty;
|
self.wait_for_event = !terminal.dirty;
|
||||||
|
|
||||||
|
|
|
@ -1079,6 +1079,7 @@ impl Term {
|
||||||
.map(|span| {
|
.map(|span| {
|
||||||
span.to_locations()
|
span.to_locations()
|
||||||
});
|
});
|
||||||
|
|
||||||
let cursor = if window_focused || !config.unfocused_hollow_cursor() {
|
let cursor = if window_focused || !config.unfocused_hollow_cursor() {
|
||||||
self.cursor_style.unwrap_or(self.default_cursor_style)
|
self.cursor_style.unwrap_or(self.default_cursor_style)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue