From 9b385571e7ce6ae188042ba6b9ebdc1b3bef382f Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 30 Apr 2015 18:28:27 +0200 Subject: [PATCH] fix over-optimzation in e3375c3. Some users of DisplaySuspender expect an implicit redisplay. --- gtk2_ardour/editor.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index ba9679cc52..80b8973a2e 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -5232,6 +5232,7 @@ void Editor::resume_route_redisplay () { if (_routes) { + _routes->redisplay(); // queue redisplay _routes->resume_redisplay(); } }