From fdc597c8d3180f05ad503af91d6be11604f09417 Mon Sep 17 00:00:00 2001 From: trilader Date: Wed, 16 Dec 2020 19:50:16 +0100 Subject: [PATCH] Redraw after running auto channel refresh --- application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/application.cpp b/application.cpp index e356d68..6f46234 100644 --- a/application.cpp +++ b/application.cpp @@ -663,6 +663,7 @@ static void run() if(auto_refresh_interval != -1 && update_pending && inactivity_threshold) { action_refresh_all_channels(false); next_update = std::chrono::system_clock::now() + std::chrono::seconds(auto_refresh_interval); + draw = true; } } else if(tui_handle_action(*event, actions)) { last_user_action = std::chrono::system_clock::now();