diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-10-30 23:27:49 +1000 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-10-30 23:27:49 +1000 |
| commit | 72f98973e9bef940d5a9fd27a5ac0df7f0230144 (patch) | |
| tree | 66f53dddfcd94217beedf25272fe427a34ab665f /common | |
| parent | 12650dcbb34de5158bfb20f3a0a79fa58203f822 (diff) | |
Remove enum movement_direction
There's no point having both movement_direction and wlr_direction. This
replaces the former with the latter.
As movement_direction also contained MOVE_PARENT and MOVE_CHILD items,
these are now checked specifically in the focus command and handled in
separate functions, just like the other focus variants.
Diffstat (limited to 'common')
| -rw-r--r-- | common/util.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/common/util.c b/common/util.c index 561b3804..467aa4b5 100644 --- a/common/util.c +++ b/common/util.c @@ -175,24 +175,3 @@ failed: free(current); return NULL; } - -bool sway_dir_to_wlr(enum movement_direction dir, enum wlr_direction *out) { - switch (dir) { - case MOVE_UP: - *out = WLR_DIRECTION_UP; - break; - case MOVE_DOWN: - *out = WLR_DIRECTION_DOWN; - break; - case MOVE_LEFT: - *out = WLR_DIRECTION_LEFT; - break; - case MOVE_RIGHT: - *out = WLR_DIRECTION_RIGHT; - break; - default: - return false; - } - - return true; -} |
