aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/root.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-01-15 02:21:46 -0500
committerLibravatar emersion <contact@emersion.fr>2019-01-15 09:05:27 +0100
commit3087942c35ad8982d1cf93313fc1834ab439293f (patch)
tree1d1dbbd5aec4afb0eb25214069724ed1d527c968 /sway/tree/root.c
parentMerge pull request #3422 from RyanDwyer/resize-immediate-siblings (diff)
downloadsway-3087942c35ad8982d1cf93313fc1834ab439293f.tar.gz
sway-3087942c35ad8982d1cf93313fc1834ab439293f.tar.zst
sway-3087942c35ad8982d1cf93313fc1834ab439293f.zip
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/tree/root.c')
-rw-r--r--sway/tree/root.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c
index e1624863..e5df8dd1 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -87,6 +87,9 @@ void root_scratchpad_remove_container(struct sway_container *con) {
87 if (!sway_assert(con->scratchpad, "Container is not in scratchpad")) { 87 if (!sway_assert(con->scratchpad, "Container is not in scratchpad")) {
88 return; 88 return;
89 } 89 }
90 if (!con->workspace) {
91 root_scratchpad_show(con);
92 }
90 con->scratchpad = false; 93 con->scratchpad = false;
91 int index = list_find(root->scratchpad, con); 94 int index = list_find(root->scratchpad, con);
92 if (index != -1) { 95 if (index != -1) {