diff options
author | Chris Copeland <chris@chrisnc.net> | 2022-11-11 02:27:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 10:27:05 +0000 |
commit | 778558060243505d07b0850a115e3944862db5cd (patch) | |
tree | 92da6aff2d8f24785bea2ff74b5acc29a05c129a /alacritty/src | |
parent | 0e418bc2f761617455cc58aaabc375055dfe4284 (diff) | |
download | r-alacritty-778558060243505d07b0850a115e3944862db5cd.tar.gz r-alacritty-778558060243505d07b0850a115e3944862db5cd.tar.bz2 r-alacritty-778558060243505d07b0850a115e3944862db5cd.zip |
Fix cursor visibility with focus change on macOS
Fixes #6452.
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/event.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/alacritty/src/event.rs b/alacritty/src/event.rs index e480e305..7cf77096 100644 --- a/alacritty/src/event.rs +++ b/alacritty/src/event.rs @@ -1213,8 +1213,6 @@ impl input::Processor<EventProxy, ActionContext<'_, Notifier, EventProxy>> { if is_focused { self.ctx.window().set_urgent(false); - } else { - self.ctx.window().set_mouse_visible(true); } self.ctx.update_cursor_blinking(); |