mirror of https://github.com/GNOME/gimp.git
app: blink the statusbar on warnings and errors
Statusbar messages are too easy to miss. Blink the statusbar when showing a warning or an error, to attract attention.
This commit is contained in:
parent
e029795dfb
commit
b2bc33bdf1
app/display
|
@ -1119,6 +1119,9 @@ gimp_statusbar_push_temp_valist (GimpStatusbar *statusbar,
|
|||
statusbar->temp_context_id,
|
||||
icon_name, format, args,
|
||||
/* move_to_front = */ TRUE);
|
||||
|
||||
if (severity >= GIMP_MESSAGE_WARNING)
|
||||
gimp_widget_blink (statusbar->label);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue