mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
left/right meter marks in mixer (narrow red-stripe)
This commit is contained in:
parent
a2ceba6fbe
commit
60dde29038
2 changed files with 11 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue