FxMixerView: fixed clear()

Before calling refreshDisplay() we have to actually clear the backend model.
This commit is contained in:
Tobias Doerffel
2014-01-14 18:18:59 +01:00
parent 27b51c2508
commit dbb4a8e6ab

View File

@@ -437,6 +437,9 @@ void FxMixerView::setCurrentFxLine( int _line )
void FxMixerView::clear()
{
m_rackView->clearViews();
engine::fxMixer()->clear();
refreshDisplay();
}