aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree
diff options
context:
space:
mode:
authorLibravatar Rouven Czerwinski <rouven@czerwinskis.de>2019-06-16 17:36:00 +0200
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-06-16 12:29:16 -0400
commitddad41f423db14f89f765fc134d45d1ea8a60caf (patch)
tree02a17ffe6af7d5939129f02291036cb1633dddf9 /include/sway/tree
parentAdd missing underscore in bindswitch documentation (diff)
downloadsway-ddad41f423db14f89f765fc134d45d1ea8a60caf.tar.gz
sway-ddad41f423db14f89f765fc134d45d1ea8a60caf.tar.zst
sway-ddad41f423db14f89f765fc134d45d1ea8a60caf.zip
Fix sway crashes for scratchpad layouts
Currently container_replace removes the container from the scratchpad and re-adds it afterwards. For the split commands this results in the container being send to the scratchpad, which results in a NULL segfault if the same container should be shown. Pass an optional workspace to root_scratchpad_add_container, if the workspace is passed the window will continue to show on the workspace. If NULL is passed it is sent to the scratchpad. This was an issue if no other window except the scratchpad container was on the workspace. Fixes #4240
Diffstat (limited to 'include/sway/tree')
-rw-r--r--include/sway/tree/root.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/sway/tree/root.h b/include/sway/tree/root.h
index c4f84207..799d751a 100644
--- a/include/sway/tree/root.h
+++ b/include/sway/tree/root.h
@@ -46,8 +46,12 @@ void root_destroy(struct sway_root *root);
46 46
47/** 47/**
48 * Move a container to the scratchpad. 48 * Move a container to the scratchpad.
49 * If a workspace is passed, the container is assumed to have been in
50 * the scratchpad before and is shown on the workspace.
51 * The ws parameter can safely be NULL.
49 */ 52 */
50void root_scratchpad_add_container(struct sway_container *con); 53void root_scratchpad_add_container(struct sway_container *con,
54 struct sway_workspace *ws);
51 55
52/** 56/**
53 * Remove a container from the scratchpad. 57 * Remove a container from the scratchpad.