summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-07 05:47:20 +0000
committerDana Jansens <danakj@orodu.net>2003-04-07 05:47:20 +0000
commit5f42ecfacbbf0bcfe43137c51a20b60d8ea368e3 (patch)
tree5be32cfa3f91b3b46f6cf0c972e4559bab1fe07f /openbox/openbox.c
parentaaae49d6291ffd202cfd7e6a9a31df816433d356 (diff)
track window groups
iconify all its transients when a window is iconified
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 3d4db6f9..74f8164c 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -12,6 +12,7 @@
#include "engine.h"
#include "plugin.h"
#include "timer.h"
+#include "group.h"
#include "gettext.h"
#include "../render/render.h"
#include "../render/font.h"
@@ -172,6 +173,7 @@ int main(int argc, char **argv)
engine_load();
screen_startup();
+ group_startup();
client_startup();
/* call startup for all the plugins */
@@ -189,6 +191,7 @@ int main(int argc, char **argv)
plugin_shutdown(); /* calls all the plugins' shutdown functions */
client_shutdown();
+ group_shutdown();
screen_shutdown();
focus_shutdown();
engine_shutdown();