diff options
Diffstat (limited to 'alacritty/src/input.rs')
-rw-r--r-- | alacritty/src/input.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty/src/input.rs b/alacritty/src/input.rs index f1b4a138..8572e1ab 100644 --- a/alacritty/src/input.rs +++ b/alacritty/src/input.rs @@ -259,6 +259,7 @@ impl<T: EventListener> Execute<T> for Action { ctx.paste(&text); }, Action::ToggleFullscreen => ctx.window().toggle_fullscreen(), + Action::ToggleMaximized => ctx.window().toggle_maximized(), #[cfg(target_os = "macos")] Action::ToggleSimpleFullscreen => ctx.window().toggle_simple_fullscreen(), #[cfg(target_os = "macos")] |