summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-06-22 08:29:40 +0000
committerDana Jansens <danakj@orodu.net>2003-06-22 08:29:40 +0000
commit197988af674da27837f7a9e930e7a6d5c7a48c60 (patch)
tree2b906b35917e5120a1396ebcebc5245f2f07043f
parent17a85c1cbdc310f5ae507dd9747e37e5067be830 (diff)
reorder startup so menu goes before config parsing
-rw-r--r--openbox/openbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 70b65e40..e4aae9e8 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -194,12 +194,14 @@ int main(int argc, char **argv)
timer_startup();
event_startup();
grab_startup();
+ window_startup();
plugin_startup();
/* load the plugins specified in the pluginrc */
plugin_loadall();
/* set up the kernel config shit */
config_startup();
+ menu_startup();
/* parse/load user options */
if (parse_load_rc(&doc, &node))
parse_tree(doc, node->xmlChildrenNode, NULL);
@@ -211,8 +213,6 @@ int main(int argc, char **argv)
if (ob_rr_theme == NULL)
exit_with_error("Unable to load a theme.");
- window_startup();
- menu_startup();
frame_startup();
moveresize_startup();
focus_startup();