when the mouse tool changes, smart mode should have no effect on clearing selections

This commit is contained in:
Ben Loftis 2015-01-13 13:33:42 -06:00
parent 12d4375211
commit 88e6995b14
1 changed files with 1 additions and 8 deletions

View File

@ -335,13 +335,7 @@ Editor::internal_editing() const
void
Editor::update_time_selection_display ()
{
if (smart_mode_action->get_active()) {
/* not sure what to do here */
if (mouse_mode == MouseObject) {
} else {
}
} else {
switch (mouse_mode) {
switch (mouse_mode) {
case MouseRange:
selection->clear_objects ();
selection->ClearMidiNoteSelection(); //signal
@ -365,7 +359,6 @@ Editor::update_time_selection_display ()
selection->clear_time ();
selection->clear_tracks ();
break;
}
}
}