Fix Mixbus special case
This commit is contained in:
parent
1a90cd90de
commit
932892f794
@ -2302,12 +2302,15 @@ Editor::set_snap_mode (SnapMode mode)
|
||||
void
|
||||
Editor::set_edit_point_preference (EditPoint ep, bool force)
|
||||
{
|
||||
if (Profile->get_mixbus()) {
|
||||
if (ep == EditAtSelectedMarker) {
|
||||
ep = EditAtPlayhead;
|
||||
}
|
||||
}
|
||||
|
||||
bool changed = (_edit_point != ep);
|
||||
|
||||
_edit_point = ep;
|
||||
if (Profile->get_mixbus())
|
||||
if (ep == EditAtSelectedMarker)
|
||||
ep = EditAtPlayhead;
|
||||
|
||||
string str = edit_point_strings[(int)ep];
|
||||
if (str != edit_point_selector.get_text ()) {
|
||||
|
Loading…
Reference in New Issue
Block a user