From 46d260a4381f88d4ac8b2dc17179db8beaee5718 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 16 Jul 2014 20:03:06 +0200 Subject: Warn when reloading with unsaved modifications Since the reload operation overwrites all changes, warn before reloading if there are unsaved modifications. Signed-off-by: Lukas Fleischer --- src/calcurse.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/calcurse.c') diff --git a/src/calcurse.c b/src/calcurse.c index ce64b1f..149d7bb 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -256,6 +256,13 @@ static inline void key_generic_save(void) static inline void key_generic_reload(void) { + if (io_get_modified() && status_ask_bool(_("By reloading items, you " + "will lose any unsaved modifications. " + "Continue?")) != 1) { + wins_update(FLAG_STA); + return; + } + /* Reinitialize data structures. */ apoint_llist_free(); event_llist_free(); @@ -271,6 +278,7 @@ static inline void key_generic_reload(void) io_load_todo(); io_load_app(); + io_unset_modified(); ui_todo_load_items(); ui_todo_sel_reset(); @@ -616,6 +624,7 @@ int main(int argc, char **argv) io_load_keys(conf.pager); io_load_todo(); io_load_app(); + io_unset_modified(); wins_resize(); /* * Refresh the hidden key handler window here to prevent wgetch() from -- cgit v1.2.3-54-g00ecf