summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_selection.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-11-05 21:35:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-11-05 21:35:47 +0000
commita80aaeba7971a7d1acdbc5107fcdbae1f0b4e593 (patch)
treedc0bf7d0d8984d14adfa4d86073db09dbe0d117e /gtk2_ardour/editor_selection.cc
parentd3755ba3b34b83c5d29d848be6d1504907af7215 (diff)
mouse zoom focus; mouse scrubbing becomes mouse shuttling; use nframes64_t more; add mouse_frame() method to get mouse position & whether its in one of the two canvases; add color_from_style() utility function (though its not used)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2595 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_selection.cc')
-rw-r--r--gtk2_ardour/editor_selection.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc
index ea28845aba..4c6f3197d1 100644
--- a/gtk2_ardour/editor_selection.cc
+++ b/gtk2_ardour/editor_selection.cc
@@ -652,7 +652,7 @@ Editor::track_selection_changed ()
for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
if (find (selection->tracks.begin(), selection->tracks.end(), *i) != selection->tracks.end()) {
- (*i)->set_selected (true);
+ (*i)->set_selected (true);
} else {
(*i)->set_selected (false);
}