13
0

minor visual change for panner

git-svn-id: svn://localhost/ardour2/trunk@1238 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-12-21 00:28:08 +00:00
parent cc603c2daf
commit 4d6bfa3d47
2 changed files with 9 additions and 13 deletions

View File

@ -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 ()

View File

@ -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: