raise the message_window when the message gets repeated

--Sven
This commit is contained in:
Sven Neumann
2000-02-02 01:44:06 +00:00
parent c89791c082
commit 08057b7131
2 changed files with 4 additions and 0 deletions

View File

@ -450,6 +450,7 @@ gimp_message_box (gchar *message,
msg_box->repeat_count);
gtk_label_set_text (GTK_LABEL (msg_box->repeat_label), text);
g_free (text);
gdk_window_raise (msg_box->mbox->window);
}
else
{
@ -463,6 +464,7 @@ gimp_message_box (gchar *message,
gtk_widget_show (msg_box->repeat_label);
gtk_widget_show (hbox);
gdk_window_raise (msg_box->mbox->window);
}
return;
}

View File

@ -450,6 +450,7 @@ gimp_message_box (gchar *message,
msg_box->repeat_count);
gtk_label_set_text (GTK_LABEL (msg_box->repeat_label), text);
g_free (text);
gdk_window_raise (msg_box->mbox->window);
}
else
{
@ -463,6 +464,7 @@ gimp_message_box (gchar *message,
gtk_widget_show (msg_box->repeat_label);
gtk_widget_show (hbox);
gdk_window_raise (msg_box->mbox->window);
}
return;
}