diff options
author | Mikkel Oscar Lyderik <[email protected]> | 2016-03-29 13:49:28 +0200 |
---|---|---|
committer | Mikkel Oscar Lyderik <[email protected]> | 2016-03-30 00:47:58 +0200 |
commit | 86ea79ea6de62c0958511d45e755a4a7767efcd0 (patch) | |
tree | 96369d7356313ad86c1064c74db54258500814f2 /sway/config.c | |
parent | cefcce48aad4e452be9d081b1cd1521e2b042e97 (diff) |
Implement parsing of hide_edge_borders
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 4cb8cced..565acd05 100644 --- a/sway/config.c +++ b/sway/config.c @@ -182,6 +182,8 @@ static void config_defaults(struct sway_config *config) { config->config_chain = create_list(); config->current_config = NULL; + config->hide_edge_borders = E_NONE; + // border colors config->border_colors.focused.border = 0x4C7899FF; config->border_colors.focused.background = 0x285577FF; |