summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-01-17 16:35:28 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-01-18 08:49:18 -0700
commit47767738b9aee165a03f09f8ba222179bb73aeb6 (patch)
treee4a6c3fbfc31c18fa430be8c7deb125377cecf75 /gtk2_ardour/editor_summary.cc
parent3c00048b0c0dbf3efd17cf04fdc7daa91424e338 (diff)
rename DoTheRightThing to RollIfAppropriate
Diffstat (limited to 'gtk2_ardour/editor_summary.cc')
-rw-r--r--gtk2_ardour/editor_summary.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc
index 4a8598d59c..8beef90509 100644
--- a/gtk2_ardour/editor_summary.cc
+++ b/gtk2_ardour/editor_summary.cc
@@ -437,7 +437,7 @@ EditorSummary::on_key_press_event (GdkEventKey* key)
if (key->keyval == set_playhead_accel.accel_key && (int) key->state == set_playhead_accel.accel_mods) {
if (_session) {
get_pointer (x, y);
- _session->request_locate (_start + (samplepos_t) x / _x_scale, DoTheRightThing);
+ _session->request_locate (_start + (samplepos_t) x / _x_scale, RollIfAppropriate);
return true;
}
}