commit baf4288fe4725d5a8148a28cb492c76a4304e810 from: Stefan Sperling date: Mon May 13 16:53:52 2019 UTC tog: don't clear diff view contents when indicating diff progress this is much easier on the eyes when moving through diffs commit - 82751bc5e5fda3713fadba7f83289c577b61bbd8 commit + baf4288fe4725d5a8148a28cb492c76a4304e810 blob - f5d14d2ad18f52e6ac7f6ee94f09ccdbf29f844f blob + 353d457f02b70f88f644afb414f0c36306d4e00c --- tog/tog.c +++ tog/tog.c @@ -2169,8 +2169,7 @@ done: static void diff_view_indicate_progress(struct tog_view *view) { - werase(view->window); - waddstr(view->window, "diffing..."); + mvwaddstr(view->window, 0, 0, "diffing..."); update_panels(); doupdate(); }