all repos — openbox @ d77ac21a62d4e57dd39de6a707ca1d278cbb1e0a

openbox fork - make it a bit more like ryudo

reorder startup so that grabs are set up before parsing teh rc
Dana Jansens danakj@orodu.net
commit

d77ac21a62d4e57dd39de6a707ca1d278cbb1e0a

parent

c83ae0a208974cfe33cbd5b90dee5016171cde38

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M openbox/openbox.copenbox/openbox.c

@@ -152,6 +152,8 @@ timer_startup();

config_startup(); render_startup(); font_startup(); + event_startup(); + grab_startup(); plugin_startup(); /* startup the parsing so plugins can register sections of the rc */

@@ -166,11 +168,9 @@ /* we're done with parsing now, kill it */

parse_shutdown(); engine_startup(); - event_startup(); screen_startup(); focus_startup(); client_startup(); - grab_startup(); /* call startup for all the plugins */ plugin_startall();

@@ -186,12 +186,12 @@

client_unmanage_all(); plugin_shutdown(); /* calls all the plugins' shutdown functions */ - grab_shutdown(); client_shutdown(); focus_shutdown(); screen_shutdown(); + engine_shutdown(); + grab_shutdown(); event_shutdown(); - engine_shutdown(); render_shutdown(); config_shutdown(); timer_shutdown();