summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view_item.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-04 15:16:21 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-04 15:16:21 +0000
commit89d6f40e33933b12a40079e391a96856bfa79e2a (patch)
tree9ec4b1eb0dab409b3519ddd58815afb7f187f832 /gtk2_ardour/time_axis_view_item.cc
parent91768171d8fbad26fcae6396c5be6877ccda3289 (diff)
forward unhandled button events from MidiRegionView back to Editor
git-svn-id: svn://localhost/ardour2/branches/3.0@9068 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view_item.cc')
-rw-r--r--gtk2_ardour/time_axis_view_item.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/time_axis_view_item.cc b/gtk2_ardour/time_axis_view_item.cc
index aa9fc24b23..495efd578c 100644
--- a/gtk2_ardour/time_axis_view_item.cc
+++ b/gtk2_ardour/time_axis_view_item.cc
@@ -243,6 +243,7 @@ TimeAxisViewItem::hide_rect ()
if (name_highlight) {
name_highlight->property_outline_what() = 0x0;
+ name_highlight->property_fill_color_rgba() = UINT_RGBA_CHANGE_A(fill_color,64);
}
}
@@ -254,6 +255,7 @@ TimeAxisViewItem::show_rect ()
if (name_highlight) {
name_highlight->property_outline_what() = 0x4;
+ name_highlight->property_fill_color_rgba() = fill_color;
}
}