Skip to content

Commit

Permalink
Work around maximization / unresponsiveness GNOME bug (not gonna merge)
Browse files Browse the repository at this point in the history
  • Loading branch information
kchibisov authored and t184256 committed May 3, 2024
1 parent ed3fac8 commit c23fd15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions alacritty/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1423,8 +1423,7 @@ impl input::Processor<EventProxy, ActionContext<'_, Notifier, EventProxy>> {
self.ctx.update_cursor_blinking();
self.on_focus_change(is_focused);
},
WindowEvent::Occluded(occluded) => {
*self.ctx.occluded = occluded;
WindowEvent::Occluded(_) => {
},
WindowEvent::DroppedFile(path) => {
let path: String = path.to_string_lossy().into();
Expand Down

0 comments on commit c23fd15

Please sign in to comment.