diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-13 20:36:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 20:36:08 -0500 |
commit | fc93cd20dc108544c7cc8fced7aebed58c58a770 (patch) | |
tree | 87eb259f5f02c6bcf5240bf677d9569ee9e72518 /sway/config | |
parent | 4eb0767414fe404adf1c0b0be7c719f5ac115684 (diff) | |
parent | 124085eba96362403a757061032659c0a06aa22e (diff) | |
download | sway-fc93cd20dc108544c7cc8fced7aebed58c58a770.tar.xz |
Merge pull request #3397 from RedSoxFan/fix-swaybar-height
swaybar: obey height if given
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config/bar.c b/sway/config/bar.c index 101562d1..701bf051 100644 --- a/sway/config/bar.c +++ b/sway/config/bar.c @@ -96,7 +96,7 @@ struct bar_config *default_bar_config(void) { bar->pango_markup = false; bar->swaybar_command = NULL; bar->font = NULL; - bar->height = -1; + bar->height = 0; bar->workspace_buttons = true; bar->wrap_scroll = false; bar->separator_symbol = NULL; |