amending dc38ec8834 so that an empty rubber band selection does NOT deselect tracks.

Still need to decide if the logic for a click that does not select is correct - currently it does deselect tracks unless the SAE profile is in effect (see EditorRubberbandSelectDrag::deselect_things()
This commit is contained in:
Paul Davis 2014-02-25 22:16:34 -05:00
parent 15c13f1369
commit b600e6c2f9
1 changed files with 2 additions and 1 deletions

View File

@ -1489,7 +1489,8 @@ Editor::select_all_within (framepos_t start, framepos_t end, double top, double
}
if (found.empty()) {
selection->clear ();
selection->clear_objects();
selection->clear_time ();
return;
}