summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_tempodisplay.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-02-26 17:02:24 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-02-26 17:02:24 -0600
commit22819b8d2f3d71b8ddd0dfe22dbe635d9b0cbbcd (patch)
treea49c34cd61b3e290605c7a0fe16e78c357adbd2f /gtk2_ardour/editor_tempodisplay.cc
parente3b7114e78efb10415a9fdfdb49cf8d1851fc007 (diff)
Fix a rather large naming thinko: GridTypeSamples should be CDFrames.
Diffstat (limited to 'gtk2_ardour/editor_tempodisplay.cc')
-rw-r--r--gtk2_ardour/editor_tempodisplay.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_tempodisplay.cc b/gtk2_ardour/editor_tempodisplay.cc
index df4613f7be..8446ca414b 100644
--- a/gtk2_ardour/editor_tempodisplay.cc
+++ b/gtk2_ardour/editor_tempodisplay.cc
@@ -382,7 +382,7 @@ Editor::maybe_draw_grid_lines ()
metric_get_bbt (grid_marks, _leftmost_sample, rightmost_sample, 12);
} else if (_grid_type== GridTypeSmpte) {
metric_get_timecode (grid_marks, _leftmost_sample, rightmost_sample, 12);
- } else if (_grid_type == GridTypeSamples) {
+ } else if (_grid_type == GridTypeCDFrame) {
metric_get_samples (grid_marks, _leftmost_sample, rightmost_sample, 12);
} else if (_grid_type == GridTypeMinSec) {
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);