diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-19 14:15:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-19 14:15:28 +0000 |
| commit | 718adbae6534cc5976ac2e3c2f26c22402b27472 (patch) | |
| tree | d8627d6b1048ac23a58212cf97d2a340b6f895e2 /openbox/openbox.c | |
| parent | 3d7c2f45ec846a487aa5c717de501b11ea9071b2 (diff) | |
move focus cycling into its own file
Diffstat (limited to 'openbox/openbox.c')
| -rw-r--r-- | openbox/openbox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c index 78b53223..0acb486d 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -30,6 +30,7 @@ #include "screen.h" #include "startupnotify.h" #include "focus.h" +#include "focus_cycle.h" #include "moveresize.h" #include "frame.h" #include "keyboard.h" @@ -283,6 +284,7 @@ gint main(gint argc, gchar **argv) /* focus_backup is used for stacking, so this needs to come before anything that calls stacking_add */ focus_startup(reconfigure); + focus_cycle_startup(reconfigure); window_startup(reconfigure); sn_startup(reconfigure); screen_startup(reconfigure); @@ -348,6 +350,7 @@ gint main(gint argc, gchar **argv) propwin_shutdown(reconfigure); grab_shutdown(reconfigure); screen_shutdown(reconfigure); + focus_cycle_shutdown(reconfigure); focus_shutdown(reconfigure); sn_shutdown(reconfigure); window_shutdown(reconfigure); |
