diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-11-25 10:47:47 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-11-25 18:33:29 +0100 |
commit | 4d0c095947ed30d4f32e6db27eddbc4719fbcf9b (patch) | |
tree | 1f8d4a305fc0e80ee0801a2b8fa8f65699a868d6 /src/vars.c | |
parent | edf3903ac840b1889b9bdd687965453a7e26b7ee (diff) | |
download | calcurse-4d0c095947ed30d4f32e6db27eddbc4719fbcf9b.zip |
Add compact panels support
Add a configuration option that allows for switching to compact panel
mode. In this mode, all window labels are hidden, so that there's more
space for actual information.
This patch doesn't add a configuration menu entry and doesn't add any
documentation.
Implements FR#7.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/vars.c')
-rw-r--r-- | src/vars.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -135,6 +135,7 @@ void vars_init(void) conf.auto_gc = 0; conf.periodic_save = 0; conf.default_panel = CAL; + conf.compact_panels = 0; conf.system_dialogs = 1; conf.progress_bar = 1; strncpy(conf.output_datefmt, "%D", 3); |