From ba4d1cd1c1d5e4b47e288cd83c81011e7399207b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 21 Oct 2014 22:55:08 -0400 Subject: remove "canvasvar_" from all functions related to obtaining values from ARDOUR_UI::config() --- gtk2_ardour/route_time_axis.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gtk2_ardour/route_time_axis.cc') diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index 9a17b65e07..b68e814fba 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -878,8 +878,8 @@ RouteTimeAxisView::show_timestretch (framepos_t start, framepos_t end, int layer if (timestretch_rect == 0) { timestretch_rect = new ArdourCanvas::Rectangle (canvas_display ()); - timestretch_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_TimeStretchFill()); - timestretch_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_TimeStretchOutline()); + timestretch_rect->set_fill_color (ARDOUR_UI::config()->get_TimeStretchFill()); + timestretch_rect->set_outline_color (ARDOUR_UI::config()->get_TimeStretchOutline()); } timestretch_rect->show (); @@ -1771,11 +1771,11 @@ RouteTimeAxisView::color_handler () { //case cTimeStretchOutline: if (timestretch_rect) { - timestretch_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_TimeStretchOutline()); + timestretch_rect->set_outline_color (ARDOUR_UI::config()->get_TimeStretchOutline()); } //case cTimeStretchFill: if (timestretch_rect) { - timestretch_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_TimeStretchFill()); + timestretch_rect->set_fill_color (ARDOUR_UI::config()->get_TimeStretchFill()); } reset_meter(); -- cgit v1.2.3