summaryrefslogtreecommitdiff
path: root/sway/movement.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-09 23:04:37 -0400
committerDrew DeVault <[email protected]>2015-08-09 23:04:37 -0400
commitf6e65b6bb235cd77329e961e180e2236312ebacc (patch)
tree1cef31857263d39c1ce189e1b12c08d5c181d046 /sway/movement.h
parentb49cfa0c16b442b048213296bc3f75c4e5393a6e (diff)
Don't override keys if command fails
Diffstat (limited to 'sway/movement.h')
-rw-r--r--sway/movement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/movement.h b/sway/movement.h
index c88b44bd..44e630ff 100644
--- a/sway/movement.h
+++ b/sway/movement.h
@@ -11,6 +11,6 @@ enum movement_direction{
MOVE_DOWN
};
-void move_focus(enum movement_direction direction);
+int move_focus(enum movement_direction direction);
#endif