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 Mar 16, 2024
1 parent 1a73fe5 commit d92c0bd
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 @@ -1424,8 +1424,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 d92c0bd

Please sign in to comment.