summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-06-25 20:32:14 +0000
committerCarl Hetherington <carl@carlh.net>2012-06-25 20:32:14 +0000
commit2b559c41aeba29fca64df983e63522f91d3cfeaf (patch)
tree4a8687e2e731ec8426a7629ab69bfd4a1466d918 /gtk2_ardour/route_time_axis.cc
parent0786ff15a005f6b56a93a5a9a3b486dde4cae725 (diff)
Try slightly narrower faders in the track controls area
(#4445). git-svn-id: svn://localhost/ardour2/branches/3.0@12928 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index 0e5ac95b83..2b3a0dc017 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -91,11 +91,11 @@ Glib::RefPtr<Gdk::Pixbuf> RouteTimeAxisView::slider_desensitised;
void
RouteTimeAxisView::setup_slider_pix ()
{
- if ((slider = ::get_icon ("fader_belt_h")) == 0) {
+ if ((slider = ::get_icon ("fader_belt_h_medium")) == 0) {
throw failed_constructor ();
}
- if ((slider_desensitised = ::get_icon ("fader_belt_h_desensitised")) == 0) {
+ if ((slider_desensitised = ::get_icon ("fader_belt_h_medium_desensitised")) == 0) {
throw failed_constructor ();
}
}