move where grabs are init'd since they use the screen_support_win now
This commit is contained in:
parent
ec4c9b0c1f
commit
275c44c386
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue