summaryrefslogtreecommitdiff
path: root/libwnck/window.c
diff options
context:
space:
mode:
authorVincent Untz <vuntz@gnome.org>2007-06-10 13:58:28 +0000
committerVincent Untz <vuntz@src.gnome.org>2007-06-10 13:58:28 +0000
commitccae521e4f7794b1eec3f94d97eca0732c862372 (patch)
treeaf96ee3c711807dd450d25f30db2ef4c02d4fc04 /libwnck/window.c
parentf985d70f99b4b604ee3b2a697ef4c4a75c62e167 (diff)
downloadlibwnck-ccae521e4f7794b1eec3f94d97eca0732c862372.tar.gz
add WNCK_WINDOW_ACTION_BELOW to the available actions if we couldn't get
2007-06-10 Vincent Untz <vuntz@gnome.org> * libwnck/window.c: (update_actions): add WNCK_WINDOW_ACTION_BELOW to the available actions if we couldn't get the list of available actions. svn path=/trunk/; revision=1295
Diffstat (limited to 'libwnck/window.c')
-rw-r--r--libwnck/window.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libwnck/window.c b/libwnck/window.c
index 342b9c5..666ff3f 100644
--- a/libwnck/window.c
+++ b/libwnck/window.c
@@ -2527,7 +2527,6 @@ update_actions (WnckWindow *window)
WNCK_WINDOW_ACTION_MOVE |
WNCK_WINDOW_ACTION_RESIZE |
WNCK_WINDOW_ACTION_SHADE |
- WNCK_WINDOW_ACTION_ABOVE |
WNCK_WINDOW_ACTION_STICK |
WNCK_WINDOW_ACTION_MAXIMIZE_HORIZONTALLY |
WNCK_WINDOW_ACTION_MAXIMIZE_VERTICALLY |
@@ -2537,11 +2536,13 @@ update_actions (WnckWindow *window)
WNCK_WINDOW_ACTION_UNMAXIMIZE_VERTICALLY |
WNCK_WINDOW_ACTION_UNSHADE |
WNCK_WINDOW_ACTION_UNSTICK |
- WNCK_WINDOW_ACTION_MAXIMIZE |
- WNCK_WINDOW_ACTION_UNMAXIMIZE |
WNCK_WINDOW_ACTION_MINIMIZE |
WNCK_WINDOW_ACTION_UNMINIMIZE |
- WNCK_WINDOW_ACTION_FULLSCREEN;
+ WNCK_WINDOW_ACTION_MAXIMIZE |
+ WNCK_WINDOW_ACTION_UNMAXIMIZE |
+ WNCK_WINDOW_ACTION_FULLSCREEN |
+ WNCK_WINDOW_ACTION_ABOVE |
+ WNCK_WINDOW_ACTION_BELOW;
return;
}