From 4d6bfa3d473560153bddd21ff750da48a2bf4891 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 21 Dec 2006 00:28:08 +0000 Subject: [PATCH] minor visual change for panner git-svn-id: svn://localhost/ardour2/trunk@1238 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/panner.cc | 2 +- libs/gtkmm2ext/barcontroller.cc | 20 ++++++++------------ 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/gtk2_ardour/panner.cc b/gtk2_ardour/panner.cc index 938e8042c0..acf06c4b07 100644 --- a/gtk2_ardour/panner.cc +++ b/gtk2_ardour/panner.cc @@ -18,7 +18,7 @@ null_label_callback (char* buf, unsigned int bufsize) PannerBar::PannerBar (Gtk::Adjustment& adj, PBD::Controllable& c) : BarController (adj, c, sigc::ptr_fun (null_label_callback)) { - + set_style (BarController::Line); } PannerBar::~PannerBar () diff --git a/libs/gtkmm2ext/barcontroller.cc b/libs/gtkmm2ext/barcontroller.cc index fcd6476772..618891e424 100644 --- a/libs/gtkmm2ext/barcontroller.cc +++ b/libs/gtkmm2ext/barcontroller.cc @@ -281,22 +281,18 @@ BarController::expose (GdkEventExpose* event) if (parent) { win->draw_rectangle (parent->get_style()->get_fg_gc (parent->get_state()), - true, - 0, 0, darea.get_width(), darea.get_height()); + true, + 0, 0, darea.get_width(), darea.get_height()); } - } else { - win->draw_rectangle (get_style()->get_bg_gc (get_state()), - true, - 0, 0, darea.get_width(), darea.get_height()); - } - if (fract == 0.0) { - win->draw_rectangle (get_style()->get_fg_gc (get_state()), - true, x1, 1, 2, darea.get_height() - 2); } else { - win->draw_rectangle (get_style()->get_fg_gc (get_state()), - true, x1 - 1, 1, 3, darea.get_height() - 2); + + win->draw_rectangle (get_style()->get_bg_gc (get_state()), + true, + 0, 0, darea.get_width(), darea.get_height()); } + + win->draw_line (get_style()->get_base_gc (get_state()), x1, 0, x1, darea.get_height()); break; case CenterOut: -- 2.30.2