diff options
author | Lukas Fleischer <lfleischer@calcurse.org> | 2016-02-07 14:06:21 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@calcurse.org> | 2016-02-07 14:06:21 +0100 |
commit | 616c3759a5f28f3f6229af6d5d7ea0f302cbb17c (patch) | |
tree | 1d3047062e76ea3df5f44574718417b46b3954ae | |
parent | 537b2859f249c4f6953049ee4c4e8829bbdeff0a (diff) | |
download | calcurse-616c3759a5f28f3f6229af6d5d7ea0f302cbb17c.tar.gz calcurse-616c3759a5f28f3f6229af6d5d7ea0f302cbb17c.zip |
Fix highlighting of busy days on initialization
Make sure that the monthly view cache is invalidated after the data
files are loaded.
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
-rw-r--r-- | src/calcurse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 7bd9def..4218962 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -620,6 +620,7 @@ int main(int argc, char **argv) wins_update(FLAG_ALL); io_startup_screen(no_data_file); } + ui_calendar_monthly_view_cache_set_invalid(); do_storage(1); ui_todo_load_items(); ui_todo_sel_reset(); |