diff options
author | Brian Ashworth <[email protected]> | 2019-01-15 02:21:46 -0500 |
---|---|---|
committer | emersion <[email protected]> | 2019-01-15 09:05:27 +0100 |
commit | 3087942c35ad8982d1cf93313fc1834ab439293f (patch) | |
tree | 1d1dbbd5aec4afb0eb25214069724ed1d527c968 /sway/commands/floating.c | |
parent | bbd312c95a35db9604cfac1c7b179c3d716ff094 (diff) |
Handle hidden scratchpad containers in commands
This fixes the handling of hidden scratchpad containers for some
commands. For the most part, this just prevents running the commands on
hidden scratchpad containers, but there are some commands that have some
special handling for them.
Diffstat (limited to 'sway/commands/floating.c')
-rw-r--r-- | sway/commands/floating.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands/floating.c b/sway/commands/floating.c index e95f3185..57bf0017 100644 --- a/sway/commands/floating.c +++ b/sway/commands/floating.c @@ -40,6 +40,11 @@ struct cmd_results *cmd_floating(int argc, char **argv) { } } + if (container->scratchpad && !container->workspace) { + return cmd_results_new(CMD_FAILURE, + "Cannot set floating status on a hidden scratchpad container"); + } + bool wants_floating = parse_boolean(argv[0], container_is_floating(container)); |