make selectability of a TimeAxisView be overridable

This commit is contained in:
Paul Davis 2016-05-21 16:35:32 -04:00
parent 4aea553467
commit e626db22a0
2 changed files with 4 additions and 1 deletions

View file

@ -510,7 +510,9 @@ TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
switch (ev->button) {
case 1:
selection_click (ev);
if (selectable()) {
selection_click (ev);
}
break;
case 3: