mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
change default color of plugin-UI gauge/meter
This commit is contained in:
parent
75f0dfb4a8
commit
56daf0b54f
1 changed files with 11 additions and 1 deletions
|
|
@ -671,7 +671,17 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<Automat
|
|||
MeterInfo * info = new MeterInfo(port_index);
|
||||
control_ui->meterinfo = info;
|
||||
|
||||
info->meter = new FastMeter (5, 5, FastMeter::Vertical);
|
||||
info->meter = new FastMeter (
|
||||
5, 5, FastMeter::Vertical, 0,
|
||||
0x0000aaff,
|
||||
0x008800ff, 0x008800ff,
|
||||
0x00ff00ff, 0x00ff00ff,
|
||||
0xcccc00ff, 0xcccc00ff,
|
||||
0xffaa00ff, 0xffaa00ff,
|
||||
0xff0000ff,
|
||||
ARDOUR_UI::config()->canvasvar_MeterBackgroundBot.get(),
|
||||
ARDOUR_UI::config()->canvasvar_MeterBackgroundTop.get()
|
||||
);
|
||||
|
||||
info->min_unbound = desc.min_unbound;
|
||||
info->max_unbound = desc.max_unbound;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue