all repos — openbox @ 26fc54c9a3d7ef92ef3748b7d4d57e57a71ea798

openbox fork - make it a bit more like ryudo

why did we pass thru owner events ?? its working without that.. hum..
and now the frame buttons dont get press hilights while the menu is open
Dana Jansens danakj@orodu.net
commit

26fc54c9a3d7ef92ef3748b7d4d57e57a71ea798

parent

38b12c6cba7c7448d1d43b3f91b40726985b7235

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M openbox/menuframe.copenbox/menuframe.c

@@ -912,10 +912,10 @@ }

if (menu_frame_visible == NULL) { /* no menus shown yet */ - if (!grab_pointer(TRUE, TRUE, OB_CURSOR_POINTER)) + if (!grab_pointer(TRUE, FALSE, OB_CURSOR_POINTER)) return FALSE; if (!grab_keyboard(TRUE)) { - grab_pointer(FALSE, TRUE, OB_CURSOR_POINTER); + grab_pointer(FALSE, FALSE, OB_CURSOR_POINTER); return FALSE; } }

@@ -1024,7 +1024,7 @@ menu_frame_visible = g_list_delete_link(menu_frame_visible, it);

if (menu_frame_visible == NULL) { /* last menu shown */ - grab_pointer(FALSE, TRUE, OB_CURSOR_NONE); + grab_pointer(FALSE, FALSE, OB_CURSOR_NONE); grab_keyboard(FALSE); }