mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
Unset fullscreen is an allowed action where relevant. Fixes #449427.
2007-07-22 Cosimo Cecchi <anarki@lilik.it> Unset fullscreen is an allowed action where relevant. Fixes #449427. * src/window.c (set_allowed_actions_hint): Separate FULLSCREEN action from RESIZE action. svn path=/trunk/; revision=3272
This commit is contained in:
parent
8bbccb91f7
commit
e8b016984b
@ -1,3 +1,10 @@
|
|||||||
|
2007-07-22 Cosimo Cecchi <anarki@lilik.it>
|
||||||
|
|
||||||
|
Unset fullscreen is an allowed action where relevant. Fixes #449427.
|
||||||
|
|
||||||
|
* src/window.c (set_allowed_actions_hint): Separate FULLSCREEN action
|
||||||
|
from RESIZE action.
|
||||||
|
|
||||||
2007-07-22 Yair Hershkovitz <yairhr@gmail.com>
|
2007-07-22 Yair Hershkovitz <yairhr@gmail.com>
|
||||||
|
|
||||||
Reverse window buttons and align them to the left for RTL locales.
|
Reverse window buttons and align them to the left for RTL locales.
|
||||||
|
@ -6001,6 +6001,9 @@ set_allowed_actions_hint (MetaWindow *window)
|
|||||||
{
|
{
|
||||||
data[i] = window->display->atom_net_wm_action_resize;
|
data[i] = window->display->atom_net_wm_action_resize;
|
||||||
++i;
|
++i;
|
||||||
|
}
|
||||||
|
if (window->has_fullscreen_func)
|
||||||
|
{
|
||||||
data[i] = window->display->atom_net_wm_action_fullscreen;
|
data[i] = window->display->atom_net_wm_action_fullscreen;
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user