misc panning related UI tweaks:

* connect 2D panner "edit" to big window
* disconnect 2D-panner GUI when it's visible but panner-type changes
* ignore mixer-strip level-meter context-menu for Aux-sends
This commit is contained in:
Robin Gareus 2014-01-13 11:08:37 +01:00
parent bc88203ef5
commit 1146d58d21
3 changed files with 16 additions and 0 deletions

View file

@ -417,6 +417,11 @@ PannerUI::pan_edit ()
_mono_panner->edit ();
} else if (_stereo_panner) {
_stereo_panner->edit ();
} else if (twod_panner) {
if (!big_window) {
big_window = new Panner2dWindow (_panshell, 400, _panner->in().n_audio());
}
big_window->show ();
}
}