summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view_item.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-07-19 23:26:10 +0000
committerCarl Hetherington <carl@carlh.net>2010-07-19 23:26:10 +0000
commit064c6287cd22e9874fe897604201a4e08769471e (patch)
tree9e4c2305512df3c0d097d70aa130b2b3988b5e4d /gtk2_ardour/time_axis_view_item.h
parent61dd34e4356ac9c0b6bbac4165d768117702febd (diff)
Remove fade handles from recording regions. Fixes #3322.
git-svn-id: svn://localhost/ardour2/branches/3.0@7444 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view_item.h')
-rw-r--r--gtk2_ardour/time_axis_view_item.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/time_axis_view_item.h b/gtk2_ardour/time_axis_view_item.h
index 090df5ccca..16b558c47b 100644
--- a/gtk2_ardour/time_axis_view_item.h
+++ b/gtk2_ardour/time_axis_view_item.h
@@ -229,8 +229,10 @@ protected:
ArdourCanvas::SimpleRect* frame;
ArdourCanvas::Pixbuf* name_pixbuf;
ArdourCanvas::SimpleRect* name_highlight;
- ArdourCanvas::SimpleRect* frame_handle_start;
- ArdourCanvas::SimpleRect* frame_handle_end;
+
+ /* with these two values, if frame_handle_start == 0 then frame_handle_end will also be 0 */
+ ArdourCanvas::SimpleRect* frame_handle_start; ///< `frame' (fade) handle for the start of the item, or 0
+ ArdourCanvas::SimpleRect* frame_handle_end; ///< `frame' (fade) handle for the end of the item, or 0
double _height;
Visibility visibility;