diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-08 23:57:31 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-08 23:57:31 +0800 |
commit | 7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18 (patch) | |
tree | 4bb2edbe015ec57270f2e017ae4e868e8dc6616b | |
parent | e050375b127fb58d1cc0a11eaab340a57335b277 (diff) | |
download | gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.tar gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.tar.gz gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.tar.bz2 gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.tar.lz gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.tar.xz gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.tar.zst gsoc2013-empathy-7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18.zip |
If the main window already exists show it using empathy_window_present() instead of gtk_window_present(). Fixes bug #521051 (Marco Barisione).
svn path=/trunk/; revision=709
-rw-r--r-- | libempathy-gtk/empathy-main-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-main-window.c b/libempathy-gtk/empathy-main-window.c index 6d971eb74..ca8a16abf 100644 --- a/libempathy-gtk/empathy-main-window.c +++ b/libempathy-gtk/empathy-main-window.c @@ -187,7 +187,7 @@ empathy_main_window_show (void) gint x, y, w, h; if (window) { - gtk_window_present (GTK_WINDOW (window->window)); + empathy_window_present (GTK_WINDOW (window->window), TRUE); return window->window; } |