summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-01-12 11:39:31 -0500
committerLibravatar GitHub <noreply@github.com>2017-01-12 11:39:31 -0500
commitc1e6cc3257e5f37438e661427d625168a76ecc27 (patch)
tree29103307c7df0ae02849e937bce8045a9e24c697 /include
parentMerge pull request #1043 from Hummer12007/caps (diff)
parentImplement hide_edge_borders smart (like in i3 4.13) (diff)
downloadsway-c1e6cc3257e5f37438e661427d625168a76ecc27.tar.gz
sway-c1e6cc3257e5f37438e661427d625168a76ecc27.tar.zst
sway-c1e6cc3257e5f37438e661427d625168a76ecc27.zip
Merge pull request #1044 from ametisf/master
Implement hide_edge_borders smart (like in i3 4.13)
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 4a14cd36..febde63d 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -178,7 +178,8 @@ enum edge_border_types {
178 E_NONE, /**< Don't hide edge borders */ 178 E_NONE, /**< Don't hide edge borders */
179 E_VERTICAL, /**< hide vertical edge borders */ 179 E_VERTICAL, /**< hide vertical edge borders */
180 E_HORIZONTAL, /**< hide horizontal edge borders */ 180 E_HORIZONTAL, /**< hide horizontal edge borders */
181 E_BOTH /**< hide vertical and horizontal edge borders */ 181 E_BOTH, /**< hide vertical and horizontal edge borders */
182 E_SMART /**< hide both if precisely one window is present in workspace */
182}; 183};
183 184
184enum command_context { 185enum command_context {