diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-03-29 12:15:31 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-03-29 14:21:42 -0400 |
commit | 874f009866abaf8ca43ed4cd88a69d22a3fbfc5a (patch) | |
tree | 05dff1efd73807aded434527ed1774250314116e /sway/commands/focus.c | |
parent | b1984133a9addcdae70fb4ac58af2f387fcc3707 (diff) |
move tree includes to their own directory
Diffstat (limited to 'sway/commands/focus.c')
-rw-r--r-- | sway/commands/focus.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/commands/focus.c b/sway/commands/focus.c index f1a8078f..18e9e0bf 100644 --- a/sway/commands/focus.c +++ b/sway/commands/focus.c @@ -3,10 +3,11 @@ #include "log.h" #include "sway/input/input-manager.h" #include "sway/input/seat.h" -#include "sway/view.h" +#include "sway/tree/view.h" #include "sway/commands.h" -static bool parse_movement_direction(const char *name, enum movement_direction *out) { +static bool parse_movement_direction(const char *name, + enum movement_direction *out) { if (strcasecmp(name, "left") == 0) { *out = MOVE_LEFT; } else if (strcasecmp(name, "right") == 0) { |