summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Frantisek Fladung <ametisf@gmail.com>2017-01-12 12:11:04 +0100
committerLibravatar Frantisek Fladung <ametisf@gmail.com>2017-01-12 12:40:28 +0100
commitc04819e8c080e40e1e872c8624c60c4a51087019 (patch)
treeefa11e933930ba845663f62c96d62762286969d4 /include
parentFix #1008 (diff)
downloadsway-c04819e8c080e40e1e872c8624c60c4a51087019.tar.gz
sway-c04819e8c080e40e1e872c8624c60c4a51087019.tar.zst
sway-c04819e8c080e40e1e872c8624c60c4a51087019.zip
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 {