diff options
author | Ronan Pigott <rpigott@berkeley.edu> | 2019-11-04 15:10:40 -0700 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2019-11-04 21:16:27 -0500 |
commit | 3975ca28c2e870eb3f40bbd43a90354743f7ccf1 (patch) | |
tree | d35aa9aa8b0c17e94fb24359a13ab83547cafae5 /sway/config.c | |
parent | 38b37247ff26b7c0926a8d31c1a91f818d1f5d84 (diff) |
smart_borders: separate smartness from edge types
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index afc60a42..1f03610a 100644 --- a/sway/config.c +++ b/sway/config.c @@ -296,7 +296,7 @@ static void config_defaults(struct sway_config *config) { config->border_thickness = 2; config->floating_border_thickness = 2; config->hide_edge_borders = E_NONE; - config->saved_edge_borders = E_NONE; + config->hide_edge_borders_smart = ESMART_OFF; config->hide_lone_tab = false; // border colors |