summaryrefslogtreecommitdiffstats
path: root/sway/commands/floating.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/floating.c')
-rw-r--r--sway/commands/floating.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands/floating.c b/sway/commands/floating.c
index 5df9b1bf..ce123345 100644
--- a/sway/commands/floating.c
+++ b/sway/commands/floating.c
@@ -32,6 +32,11 @@ struct cmd_results *cmd_floating(int argc, char **argv) {
32 seat_set_focus_container(config->handler_context.seat, container); 32 seat_set_focus_container(config->handler_context.seat, container);
33 } 33 }
34 34
35 if (container_is_scratchpad_hidden(container)) {
36 return cmd_results_new(CMD_INVALID,
37 "Can't change floating on hidden scratchpad container");
38 }
39
35 // If the container is in a floating split container, 40 // If the container is in a floating split container,
36 // operate on the split container instead of the child. 41 // operate on the split container instead of the child.
37 if (container_is_floating_or_child(container)) { 42 if (container_is_floating_or_child(container)) {