summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ghostregion.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-02-25 11:35:55 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-02-25 12:02:50 -0500
commit0bcf3001f5d071dacb9231be4f9956cfd4bb93d3 (patch)
tree7bb182a34015cfeef9b8e7df3e9c93ea74f819c3 /gtk2_ardour/ghostregion.cc
parent737aae908af36ef6b4bd7592c514d2fa48638525 (diff)
fiddle with single pixel adjustments to time axis view item heights; fix region gain envelope visibility
Diffstat (limited to 'gtk2_ardour/ghostregion.cc')
-rw-r--r--gtk2_ardour/ghostregion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ghostregion.cc b/gtk2_ardour/ghostregion.cc
index 5974f17bad..3bdc690044 100644
--- a/gtk2_ardour/ghostregion.cc
+++ b/gtk2_ardour/ghostregion.cc
@@ -49,8 +49,8 @@ GhostRegion::GhostRegion (ArdourCanvas::Group* parent, TimeAxisView& tv, TimeAxi
base_rect = new ArdourCanvas::Rectangle (group);
CANVAS_DEBUG_NAME (base_rect, "ghost region rect");
base_rect->set_x0 (0);
- base_rect->set_y0 (1.0);
- base_rect->set_y1 (trackview.current_height());
+ base_rect->set_y0 (0.0);
+ base_rect->set_y1 (trackview.current_height() - 1.0);
base_rect->set_outline_what (0);
if (!is_automation_ghost()) {