diff options
-rw-r--r-- | libempathy-gtk/empathy-ui-utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index 9c66e73ba..c31dfefc0 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -1273,6 +1273,9 @@ empathy_window_present (GtkWindow *window, timestamp = gtk_get_current_event_time (); gtk_window_set_skip_taskbar_hint (window, FALSE); gtk_window_present_with_time (window, timestamp); + /* FIXME: This shouldn't be required as gtk_window_present's doc says + * it deiconify automatically. */ + gtk_window_deiconify (window); } GtkWindow * |