summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_streamview.cc
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-04-17 19:57:34 +0000
committerDoug McLain <doug@nostar.net>2008-04-17 19:57:34 +0000
commit43a843f33a843cb8861fc6917fd3ae7ddd3c51f8 (patch)
tree89e5fe867e5c9d9928c2cce79a3033cbe7c51693 /gtk2_ardour/audio_streamview.cc
parentb235856e446accd279160a69cc8950e123c0c82f (diff)
Fix for the left black outline on a new recording region, the right one (when dropping in and out in one recording take) needs a bit more work
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3262 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_streamview.cc')
-rw-r--r--gtk2_ardour/audio_streamview.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/audio_streamview.cc b/gtk2_ardour/audio_streamview.cc
index e287fd8ea2..ab3a9f5303 100644
--- a/gtk2_ardour/audio_streamview.cc
+++ b/gtk2_ardour/audio_streamview.cc
@@ -547,7 +547,7 @@ AudioStreamView::setup_rec_box ()
rec_rect->property_x2() = xend;
rec_rect->property_y2() = (double) _trackview.height - 1;
rec_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeAxisFrame.get();
- rec_rect->property_outline_what() = 0x4 | 0x8; // Draw top and bottom outline to blend with region
+ rec_rect->property_outline_what() = 0x1 | 0x2 | 0x4 | 0x8;
rec_rect->property_fill_color_rgba() = fill_color;
RecBoxInfo recbox;