]> git.0d.be Git - empathy.git/commitdiff
main-window: use GTK_MESSAGE_ERROR for account error info bars
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 16 Feb 2010 17:54:50 +0000 (17:54 +0000)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 16 Feb 2010 17:54:50 +0000 (17:54 +0000)
The accounts dialog uses this message type in this case which makes more sense
as that's an really an error (#609822).

src/empathy-main-window.c

index 8d6413aabe7377f56f3b3f8f9ae382c14bacf0a3..240f4b18be8ae8a1ae0526f18df8852fe321afb4 100644 (file)
@@ -407,7 +407,7 @@ main_window_error_display (EmpathyMainWindow *window,
        }
 
        info_bar = gtk_info_bar_new ();
-       gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar), GTK_MESSAGE_WARNING);
+       gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar), GTK_MESSAGE_ERROR);
 
        gtk_widget_set_no_show_all (info_bar, TRUE);
        gtk_box_pack_start (GTK_BOX (window->errors_vbox), info_bar, FALSE, TRUE, 0);