summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_region_view.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-17 10:56:04 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-17 10:56:04 -0400
commitb9c94f6dbf7c2385d295be9109f99664c84e28ff (patch)
treee524ca205d9d54ee706dd78016120ca440619d9b /gtk2_ardour/audio_region_view.cc
parentd1a05240efc9816b4358cdeab458a54048abf9be (diff)
remove all calls to Outline::set_outline_width (1) because this is "wrong" when using Cairo - the default is 0.5 and it can remain that way
Diffstat (limited to 'gtk2_ardour/audio_region_view.cc')
-rw-r--r--gtk2_ardour/audio_region_view.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk2_ardour/audio_region_view.cc b/gtk2_ardour/audio_region_view.cc
index eae9eb5f78..b4cdcfb8dc 100644
--- a/gtk2_ardour/audio_region_view.cc
+++ b/gtk2_ardour/audio_region_view.cc
@@ -304,11 +304,9 @@ AudioRegionView::fade_in_active_changed ()
if (audio_region()->fade_in_active()) {
/* XXX: make a themable colour */
fade_in_shape->set_fill_color (RGBA_TO_UINT (45, 45, 45, 90));
- fade_in_shape->set_outline_width (1);
} else {
/* XXX: make a themable colour */
fade_in_shape->set_fill_color (RGBA_TO_UINT (45, 45, 45, 20));
- fade_in_shape->set_outline_width (1);
}
}
@@ -318,11 +316,9 @@ AudioRegionView::fade_out_active_changed ()
if (audio_region()->fade_out_active()) {
/* XXX: make a themable colour */
fade_out_shape->set_fill_color (RGBA_TO_UINT (45, 45, 45, 90));
- fade_out_shape->set_outline_width (1);
} else {
/* XXX: make a themable colour */
fade_out_shape->set_fill_color (RGBA_TO_UINT (45, 45, 45, 20));
- fade_out_shape->set_outline_width (1);
}
}
@@ -1270,7 +1266,6 @@ AudioRegionView::transients_changed ()
canvas_item->set (ArdourCanvas::Duple (-1.0, 2.0),
ArdourCanvas::Duple (1.0, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
- canvas_item->set_outline_width (1);
canvas_item->property_first_arrowhead() = TRUE;
canvas_item->property_last_arrowhead() = TRUE;
canvas_item->property_arrow_shape_a() = 11.0;