summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_streamview.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-09-07 12:00:06 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-09-07 12:00:06 -0400
commitc450fd3861f3cf7de92cd4b6a73c58f8b5491569 (patch)
tree1aed6809129249e663916bf14a4cbe44383b3e81 /gtk2_ardour/audio_streamview.cc
parent4880019218ed253cf277225a5ac4d044d10dabe4 (diff)
tweak vertical size/position and layering of recording rect
Diffstat (limited to 'gtk2_ardour/audio_streamview.cc')
-rw-r--r--gtk2_ardour/audio_streamview.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk2_ardour/audio_streamview.cc b/gtk2_ardour/audio_streamview.cc
index fa48883272..734c910b34 100644
--- a/gtk2_ardour/audio_streamview.cc
+++ b/gtk2_ardour/audio_streamview.cc
@@ -285,13 +285,12 @@ AudioStreamView::setup_rec_box ()
ArdourCanvas::Rectangle * rec_rect = new ArdourCanvas::Rectangle (_canvas_group);
rec_rect->set_x0 (xstart);
- rec_rect->set_y0 (1);
+ rec_rect->set_y0 (0);
rec_rect->set_x1 (xend);
rec_rect->set_y1 (child_height ());
rec_rect->set_outline_what (ArdourCanvas::Rectangle::What (0));
rec_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_TimeAxisFrame());
rec_rect->set_fill_color (fill_color);
- rec_rect->lower_to_bottom();
RecBoxInfo recbox;
recbox.rectangle = rec_rect;