summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-09-04 21:08:23 +0200
committerQC <qball@gmpclient.org>2015-09-04 21:08:23 +0200
commite10aa09f748fc927327479eafea67e25cc592076 (patch)
tree7e0d75aea48570871196e555b1cd1894c84cc073 /config
parent465d027c1e46814ae3e1a72eb56ec90e4332f825 (diff)
Add hide scrollbar option.
Diffstat (limited to 'config')
-rw-r--r--config/config.def.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/config/config.def.c b/config/config.def.c
index a7e2e94b..c9b2ec1c 100644
--- a/config/config.def.c
+++ b/config/config.def.c
@@ -131,9 +131,14 @@ Settings config = {
/** Fuzzy matching. */
.fuzzy = FALSE,
/** Monitor */
- .monitor = -1,
- .line_margin = 2,
- .filter = NULL,
- .separator_style = "dash",
+ .monitor = -1,
+ /** set line margin */
+ .line_margin = 2,
+ /** Set filter */
+ .filter = NULL,
+ /** Separator style: dash/solid */
+ .separator_style = "dash",
+ /** Hide scrollbar */
+ .hide_scrollbar = FALSE,
};