Fixed order of function calls

You must grab the keyboard after reading the input.
This commit is contained in:
phillbush 2020-05-18 23:05:14 -03:00
parent 697f63c474
commit 465d07dbe9

View File

@ -141,8 +141,6 @@ main(int argc, char *argv[])
getresources();
setupdc();
setupgeom();
if (override_redirect)
setupgrab();
/* generate menus and recalculate them */
parsestdin();
@ -151,6 +149,10 @@ main(int argc, char *argv[])
calcscreengeom();
calcmenu(rootmenu);
/* grab mouse and keyboard */
if (override_redirect)
setupgrab();
/* map root menu */
currmenu = rootmenu;
XMapWindow(dpy, rootmenu->win);