commit 8ee764e0c24378fe3d8e430bdbb40ea58ac9c28d
parent 64db549c1887e1f4f360aa4c30343977ae9c640a
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 9 May 2016 07:02:25 -0700
Merge pull request #649 from mikkeloscar/floating-layout
Prevent changing layout when focusing float window
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/sway/commands.c b/sway/commands.c
@@ -1831,6 +1831,10 @@ static struct cmd_results *cmd_layout(int argc, char **argv) {
return error;
}
swayc_t *parent = get_focused_container(&root_container);
+ if (parent->is_floating) {
+ return cmd_results_new(CMD_FAILURE, "layout", "Unable to change layout of floating windows");
+ }
+
while (parent->type == C_VIEW) {
parent = parent->parent;
}