left/right meter marks in mixer (narrow red-stripe)

This commit is contained in:
Robin Gareus 2013-07-28 22:34:28 +02:00
parent a2ceba6fbe
commit 60dde29038
2 changed files with 11 additions and 2 deletions

View file

@ -281,10 +281,16 @@ meter_render_ticks (Gtk::Widget& w, MeterType type, vector<ARDOUR::DataType> typ
if (tickleft) {
if (w.get_name().substr(0, 3) == "Bar") {
box_l = width-2; box_w = 2;
} else if (w.get_name().substr(0, 4) == "Mark") {
box_l = width-2; box_w = 2;
background = false;
}
} else if (tickright) {
if (w.get_name().substr(0, 3) == "Bar") {
box_l = 0; box_w = 2;
} else if (w.get_name().substr(0, 4) == "Mark") {
box_l = 0; box_w = 2;
background = false;
}
} else {
box_l = 0; box_w = 3;