fix segfault by ordering shutdown properly
This commit is contained in:
parent
d3f67abe46
commit
3a280fa949
1 changed files with 2 additions and 2 deletions
|
@ -301,8 +301,8 @@ gint main(gint argc, gchar **argv)
|
||||||
moveresize_startup(reconfigure);
|
moveresize_startup(reconfigure);
|
||||||
keyboard_startup(reconfigure);
|
keyboard_startup(reconfigure);
|
||||||
mouse_startup(reconfigure);
|
mouse_startup(reconfigure);
|
||||||
menu_startup(reconfigure);
|
|
||||||
menu_frame_startup(reconfigure);
|
menu_frame_startup(reconfigure);
|
||||||
|
menu_startup(reconfigure);
|
||||||
|
|
||||||
if (!reconfigure) {
|
if (!reconfigure) {
|
||||||
guint32 xid;
|
guint32 xid;
|
||||||
|
@ -344,8 +344,8 @@ gint main(gint argc, gchar **argv)
|
||||||
client_unmanage_all();
|
client_unmanage_all();
|
||||||
}
|
}
|
||||||
|
|
||||||
menu_frame_shutdown(reconfigure);
|
|
||||||
menu_shutdown(reconfigure);
|
menu_shutdown(reconfigure);
|
||||||
|
menu_frame_shutdown(reconfigure);
|
||||||
mouse_shutdown(reconfigure);
|
mouse_shutdown(reconfigure);
|
||||||
keyboard_shutdown(reconfigure);
|
keyboard_shutdown(reconfigure);
|
||||||
moveresize_shutdown(reconfigure);
|
moveresize_shutdown(reconfigure);
|
||||||
|
|
Loading…
Reference in a new issue