From 27b51c250865c42633f98d98742cf9d7f903931b Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Tue, 14 Jan 2014 18:17:51 +0100 Subject: [PATCH] Song: added missing refresh of FxMixerView when loading project Missed this call when backporting. --- src/core/song.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/song.cpp b/src/core/song.cpp index a2c5457aa..2af716a48 100644 --- a/src/core/song.cpp +++ b/src/core/song.cpp @@ -1154,6 +1154,11 @@ void song::loadProject( const QString & _file_name ) else if( node.nodeName() == engine::fxMixer()->nodeName() ) { engine::fxMixer()->restoreState( node.toElement() ); + if( engine::hasGUI() ) + { + // refresh FxMixerView + engine::fxMixerView()->refreshDisplay(); + } } else if( engine::hasGUI() ) {