From 4232b615621d04b2cf263ce18e2d59109dfc5b0e Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 1 Sep 2019 18:37:49 +0200 Subject: 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. --- gtk2_ardour/ardour_ui2.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc index 3fa4359a84..9ded21f221 100644 --- a/gtk2_ardour/ardour_ui2.cc +++ b/gtk2_ardour/ardour_ui2.cc @@ -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); } } -- cgit v1.2.3