aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/sticky.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/sticky.c')
-rw-r--r--sway/commands/sticky.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands/sticky.c b/sway/commands/sticky.c
index 7995cdd6..f18322b7 100644
--- a/sway/commands/sticky.c
+++ b/sway/commands/sticky.c
@@ -16,6 +16,11 @@ struct cmd_results *cmd_sticky(int argc, char **argv) {
16 return error; 16 return error;
17 } 17 }
18 struct sway_container *container = config->handler_context.container; 18 struct sway_container *container = config->handler_context.container;
19
20 if (container == NULL) {
21 return cmd_results_new(CMD_FAILURE, "sticky", "No current container");
22 };
23
19 if (!container_is_floating(container)) { 24 if (!container_is_floating(container)) {
20 return cmd_results_new(CMD_FAILURE, "sticky", 25 return cmd_results_new(CMD_FAILURE, "sticky",
21 "Can't set sticky on a tiled container"); 26 "Can't set sticky on a tiled container");