From: Dana Jansens Date: Wed, 17 Sep 2003 02:41:17 +0000 (+0000) Subject: move where grabs are init'd since they use the screen_support_win now X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=275c44c386e937ed66cd2021b880a3d7d4de4933;p=chaz%2Fopenbox move where grabs are init'd since they use the screen_support_win now --- diff --git a/openbox/openbox.c b/openbox/openbox.c index a8102c3a..73cc6e77 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -211,13 +211,13 @@ int main(int argc, char **argv) } } event_startup(reconfigure); - grab_startup(reconfigure); /* focus_backup is used for stacking, so this needs to come before anything that calls stacking_add */ focus_startup(reconfigure); window_startup(reconfigure); sn_startup(reconfigure); screen_startup(reconfigure); + grab_startup(reconfigure); group_startup(reconfigure); client_startup(reconfigure); dock_startup(reconfigure); @@ -257,11 +257,11 @@ int main(int argc, char **argv) dock_shutdown(reconfigure); client_shutdown(reconfigure); group_shutdown(reconfigure); + grab_shutdown(reconfigure); screen_shutdown(reconfigure); focus_shutdown(reconfigure); sn_shutdown(reconfigure); window_shutdown(reconfigure); - grab_shutdown(reconfigure); event_shutdown(reconfigure); config_shutdown(); } while (reconfigure);