diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2017-02-14 21:29:27 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2017-02-14 21:29:27 +0200 |
commit | 8c93e0081b8864ca0baff8d80022bd60affceeb6 (patch) | |
tree | a4033ce6fce2874e94de9ec3ec87a82e9ee2d20c /client | |
parent | 7b8b38bc2170eadf4bdfae92cf6720b5ca13910b (diff) | |
download | bemenu-8c93e0081b8864ca0baff8d80022bd60affceeb6.tar.gz bemenu-8c93e0081b8864ca0baff8d80022bd60affceeb6.tar.bz2 bemenu-8c93e0081b8864ca0baff8d80022bd60affceeb6.zip |
bemenu: Disable early grab on -f for now
We can't handle input yet during read because renderers are very dumb.
Thus -f can potentially lock your system with grab.
Diffstat (limited to 'client')
-rw-r--r-- | client/common/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/common/common.c b/client/common/common.c index af9fa31..3f2d576 100644 --- a/client/common/common.c +++ b/client/common/common.c @@ -266,7 +266,7 @@ menu_with_options(struct client *client) if (client->grab) { bm_menu_set_filter(menu, "Loading..."); - bm_menu_grab_keyboard(menu, true); + // bm_menu_grab_keyboard(menu, true); bm_menu_render(menu); bm_menu_set_filter(menu, NULL); } |