app: update GimpStatusbar message icon even when the text is unchanged

Probably just academic.
This commit is contained in:
Ell
2016-04-20 08:37:36 +00:00
parent bb4d04dce5
commit ce8cbe6540

View File

@ -1465,7 +1465,8 @@ gimp_statusbar_add_message (GimpStatusbar *statusbar,
gboolean is_front_message = (list == statusbar->messages);
if ((is_front_message || ! move_to_front) &&
strcmp (msg->text, message) == 0)
strcmp (msg->text, message) == 0 &&
g_strcmp0 (msg->icon_name, icon_name) == 0)
{
g_free (message);
return;