mirror of
https://github.com/brl/mutter.git
synced 2024-12-25 20:32:16 +00:00
window: ignore skip-taskbar hint on parentless dialogs
Dialogs that don't have a parent should not be skip-taskbar, otherwise they get lost and there is no way to recover them (because they're not autoraised when activating the parent), but toolkits and applications set the hint anyway. https://bugzilla.gnome.org/show_bug.cgi?id=673399
This commit is contained in:
parent
a3037a6dd1
commit
eeed3d605b
@ -8395,10 +8395,13 @@ recalc_window_features (MetaWindow *window)
|
|||||||
|
|
||||||
case META_WINDOW_DIALOG:
|
case META_WINDOW_DIALOG:
|
||||||
case META_WINDOW_MODAL_DIALOG:
|
case META_WINDOW_MODAL_DIALOG:
|
||||||
/* only skip taskbar if we have a real transient parent */
|
/* only skip taskbar if we have a real transient parent
|
||||||
|
(and ignore the application hints) */
|
||||||
if (window->xtransient_for != None &&
|
if (window->xtransient_for != None &&
|
||||||
window->xtransient_for != window->screen->xroot)
|
window->xtransient_for != window->screen->xroot)
|
||||||
window->skip_taskbar = TRUE;
|
window->skip_taskbar = TRUE;
|
||||||
|
else
|
||||||
|
window->skip_taskbar = FALSE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case META_WINDOW_NORMAL:
|
case META_WINDOW_NORMAL:
|
||||||
|
Loading…
Reference in New Issue
Block a user