aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-08-02 16:08:46 -0400
committerLibravatar GitHub <noreply@github.com>2016-08-02 16:08:46 -0400
commit3a9f4f8b31659ebae28405b76ccf8f90d2bf8afa (patch)
treed9c5a8b2c6fc8c1da7ff645c596128c1e79868e0
parentMerge pull request #817 from zandrmartin/fix-unmanaged-node-json (diff)
parentfixed uninitialized bar.wrap_scroll (diff)
downloadsway-3a9f4f8b31659ebae28405b76ccf8f90d2bf8afa.tar.gz
sway-3a9f4f8b31659ebae28405b76ccf8f90d2bf8afa.tar.zst
sway-3a9f4f8b31659ebae28405b76ccf8f90d2bf8afa.zip
Merge pull request #820 from minus7/bar-wrap-scroll-fix
fixed uninitialized bar.wrap_scroll
-rw-r--r--sway/config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c
index 25566213..a1f33dcf 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -1118,6 +1118,7 @@ struct bar_config *default_bar_config(void) {
1118 bar->font = NULL; 1118 bar->font = NULL;
1119 bar->height = -1; 1119 bar->height = -1;
1120 bar->workspace_buttons = true; 1120 bar->workspace_buttons = true;
1121 bar->wrap_scroll = false;
1121 bar->separator_symbol = NULL; 1122 bar->separator_symbol = NULL;
1122 bar->strip_workspace_numbers = false; 1123 bar->strip_workspace_numbers = false;
1123 bar->binding_mode_indicator = true; 1124 bar->binding_mode_indicator = true;