InstrumentTrack: show FX mixer when double clicking FX line LCD spinbox

As proposed by Danil <baza-nsk@ya.ru> on 2012-03-12.
This commit is contained in:
Tobias Doerffel
2012-10-27 22:50:16 +02:00
parent c1368ddb1a
commit 95e1ef1c78

View File

@@ -1193,6 +1193,9 @@ class fxLineLcdSpinBox : public lcdSpinBox
virtual void mouseDoubleClickEvent ( QMouseEvent * _me )
{
engine::fxMixerView()->setCurrentFxLine( model()->value() );
engine::fxMixerView()->show();// show fxMixer window
engine::fxMixerView()->setFocus();// set focus to fxMixer window
//engine::getFxMixerView()->raise();
}
};