aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ragnar Groot Koerkamp <ragnar.grootkoerkamp@gmail.com>2021-06-18 17:05:23 +0200
committerLibravatar Simon Ser <contact@emersion.fr>2021-06-22 19:00:31 +0200
commitc0c4e260c45a07b98fc90276a9ca7b6cf06b3d0b (patch)
tree3035de0f58cbaf2a0bffcbd42ab6ec94db060086 /include
parentDon't apply hide_edge_borders to any floating container (diff)
downloadsway-c0c4e260c45a07b98fc90276a9ca7b6cf06b3d0b.tar.gz
sway-c0c4e260c45a07b98fc90276a9ca7b6cf06b3d0b.tar.zst
sway-c0c4e260c45a07b98fc90276a9ca7b6cf06b3d0b.zip
Revert "Add workspace {prev,next}_on_output --create"
This reverts commit 487c83f0de9ca2a7650ad636eed6fd694ddcb82e. The --create flag is undocumented, not in i3, and at least partially broken (#5913), so this removes the feature.
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/workspace.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h
index 65ba247f..b3d93a81 100644
--- a/include/sway/tree/workspace.h
+++ b/include/sway/tree/workspace.h
@@ -69,13 +69,11 @@ struct sway_workspace *workspace_by_number(const char* name);
69 69
70struct sway_workspace *workspace_by_name(const char*); 70struct sway_workspace *workspace_by_name(const char*);
71 71
72struct sway_workspace *workspace_output_next( 72struct sway_workspace *workspace_output_next(struct sway_workspace *current);
73 struct sway_workspace *current, bool create);
74 73
75struct sway_workspace *workspace_next(struct sway_workspace *current); 74struct sway_workspace *workspace_next(struct sway_workspace *current);
76 75
77struct sway_workspace *workspace_output_prev( 76struct sway_workspace *workspace_output_prev(struct sway_workspace *current);
78 struct sway_workspace *current, bool create);
79 77
80struct sway_workspace *workspace_prev(struct sway_workspace *current); 78struct sway_workspace *workspace_prev(struct sway_workspace *current);
81 79