From a94b0ecde01d021795c6c29a90d60a45f9198e2d Mon Sep 17 00:00:00 2001 From: Lars Henriksen Date: Mon, 20 Aug 2018 20:22:24 +0200 Subject: Fix window update after hook execution The introduction of hooks raised a problem with window updates. The diagnosis in commit feb059e8 (Fix segmentation fault on reload with pre-load hook) was right, the cure was wrong. The problem is wins_update(), not the listbox contents. The wins_update() call does not belong in wins_unprepare_external() (or in io_reload_data()), but at a higher level. It should be called _after_ reload, as indeed it is in key_generic_reload() when the listbox contents have been updated (todo as well as appointments). The call was introduced in commit 8ae75f3 without comment. The todo updates in io_reload_data() also belong in key_generic_reload() where they were before commit 7f06c252. When saving data, all panels must be updated in case a hook was executed. Signed-off-by: Lars Henriksen Signed-off-by: Lukas Fleischer --- src/calcurse.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/calcurse.c') diff --git a/src/calcurse.c b/src/calcurse.c index 8e1978e..920cbcd 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -272,17 +272,19 @@ static inline void key_generic_help(void) static inline void key_generic_save(void) { io_save_cal(IO_SAVE_DISPLAY_BAR); - wins_update(FLAG_STA); + wins_update(FLAG_ALL); } static inline void key_generic_reload(void) { if (io_reload_data()) { + ui_todo_load_items(); + ui_todo_sel_reset(); do_storage(0); notify_check_next_app(1); ui_calendar_monthly_view_cache_set_invalid(); - wins_update(FLAG_ALL); } + wins_update(FLAG_ALL); } static inline void key_generic_import(void) -- cgit v1.2.3-54-g00ecf