diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-08-02 16:08:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-02 16:08:46 -0400 |
commit | 3a9f4f8b31659ebae28405b76ccf8f90d2bf8afa (patch) | |
tree | d9c5a8b2c6fc8c1da7ff645c596128c1e79868e0 /sway/config.c | |
parent | 947570e6df886146d225112f3b15a1deea66c4d8 (diff) | |
parent | b246799548652ff26a26a2b02643222146d3a12c (diff) |
Merge pull request #820 from minus7/bar-wrap-scroll-fix
fixed uninitialized bar.wrap_scroll
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 1 |
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) { bar->font = NULL; bar->height = -1; bar->workspace_buttons = true; + bar->wrap_scroll = false; bar->separator_symbol = NULL; bar->strip_workspace_numbers = false; bar->binding_mode_indicator = true; |