13
0

Prominent "Feedback" indicator blinking

Always use a color when blinking. This allows to see
"feedback" even in screenshots. Previously there was a 50%
to capture it in a still image.
This commit is contained in:
Robin Gareus 2019-09-01 18:37:49 +02:00
parent 7b3ca486a4
commit 4232b61562
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -686,12 +686,14 @@ void
ARDOUR_UI::feedback_blink (bool onoff)
{
if (_feedback_exists) {
feedback_alert_button.set_active (true);
if (onoff) {
feedback_alert_button.set_active (true);
feedback_alert_button.reset_fixed_colors ();
} else {
feedback_alert_button.set_active (false);
feedback_alert_button.set_active_color (UIConfigurationBase::instance().color ("feedback alert: alt active", NULL));
}
} else {
feedback_alert_button.reset_fixed_colors ();
feedback_alert_button.set_active (false);
}
}