summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view_item.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-04-08 20:25:05 +0200
committerRobin Gareus <robin@gareus.org>2019-04-08 20:57:56 +0200
commit8a7e452265ca079aafe8fa6dce58ed54ca7fe824 (patch)
tree8ed4ddfeba55c683ccb8bbb367913306be90cac5 /gtk2_ardour/time_axis_view_item.h
parentf9e12235c3cba154a5c1a88a647bf1a1531fb1f3 (diff)
Yet another "Rect frame" (not a sample)
Diffstat (limited to 'gtk2_ardour/time_axis_view_item.h')
-rw-r--r--gtk2_ardour/time_axis_view_item.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/time_axis_view_item.h b/gtk2_ardour/time_axis_view_item.h
index a099cb8380..c1d9d32c98 100644
--- a/gtk2_ardour/time_axis_view_item.h
+++ b/gtk2_ardour/time_axis_view_item.h
@@ -223,9 +223,9 @@ protected:
ArdourCanvas::Text* name_text;
ArdourCanvas::Rectangle* name_highlight;
- /* with these two values, if sample_handle_start == 0 then sample_handle_end will also be 0 */
- ArdourCanvas::Rectangle* sample_handle_start; ///< `sample' (fade) handle for the start of the item, or 0
- ArdourCanvas::Rectangle* sample_handle_end; ///< `sample' (fade) handle for the end of the item, or 0
+ /* with these two values, if frame_handle_start == 0 then frame_handle_end will also be 0 */
+ ArdourCanvas::Rectangle* frame_handle_start; ///< `sample' (fade) handle for the start of the item, or 0
+ ArdourCanvas::Rectangle* frame_handle_end; ///< `sample' (fade) handle for the end of the item, or 0
bool sample_handle_crossing (GdkEvent*, ArdourCanvas::Rectangle*);