aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-10-03 13:03:06 +0200
committerLibravatar GitHub <noreply@github.com>2018-10-03 13:03:06 +0200
commit06c214a800cab9119ae4b04371e3f6bbca8a0550 (patch)
treeeed325e37d02fa71858a33e71ef33961395dd16f /include/sway/tree/container.h
parentMerge pull request #2755 from RyanDwyer/fix-tiling-criteria (diff)
parentRemove server-decoration assumption if view supports xdg-decoration (diff)
downloadsway-06c214a800cab9119ae4b04371e3f6bbca8a0550.tar.gz
sway-06c214a800cab9119ae4b04371e3f6bbca8a0550.tar.zst
sway-06c214a800cab9119ae4b04371e3f6bbca8a0550.zip
Merge pull request #2703 from RyanDwyer/csd-border
Add CSD to border modes
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index b865a0f2..da6592b4 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -28,6 +28,7 @@ enum sway_container_border {
28 B_NONE, 28 B_NONE,
29 B_PIXEL, 29 B_PIXEL,
30 B_NORMAL, 30 B_NORMAL,
31 B_CSD,
31}; 32};
32 33
33struct sway_root; 34struct sway_root;
@@ -63,7 +64,6 @@ struct sway_container_state {
63 bool border_bottom; 64 bool border_bottom;
64 bool border_left; 65 bool border_left;
65 bool border_right; 66 bool border_right;
66 bool using_csd;
67}; 67};
68 68
69struct sway_container { 69struct sway_container {