Fix edit point selector on Mixbus.

This commit is contained in:
David Robillard 2014-11-18 02:19:03 -05:00
parent 843551d9d8
commit 5799cb8509
1 changed files with 2 additions and 3 deletions

View File

@ -2104,12 +2104,11 @@ Editor::set_edit_point_preference (EditPoint ep, bool force)
bool changed = (_edit_point != ep);
_edit_point = ep;
string str = edit_point_strings[(int)ep];
if (Profile->get_mixbus())
if (ep == EditAtSelectedMarker)
ep = EditAtPlayhead;
string str = edit_point_strings[(int)ep];
if (str != edit_point_selector.get_text ()) {
edit_point_selector.set_text (str);
}