Skip to content

Commit

Permalink
window: do not disable fullscreen for dialogs
Browse files Browse the repository at this point in the history
fixes #735
  • Loading branch information
Alberts Muktupāvels authored and raveit65 committed Oct 15, 2022
1 parent d173ab0 commit 63b00b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -6732,7 +6732,8 @@ recalc_window_features (MetaWindow *window)
window->has_resize_func = FALSE;
}

if (window->type != META_WINDOW_NORMAL)
if (window->type != META_WINDOW_NORMAL &&
window->type != META_WINDOW_DIALOG)
{
window->has_minimize_func = FALSE;
window->has_maximize_func = FALSE;
Expand Down

0 comments on commit 63b00b9

Please sign in to comment.