aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-main-window.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-03-08 23:57:31 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-03-08 23:57:31 +0800
commit7d93b1d99b8f0ced3d3cd5ecb786aeddc3083c18 (patch)
tree4bb2edbe015ec57270f2e017ae4e868e8dc6616b /libempathy-gtk/empathy-main-window.c
parente050375b127fb58d1cc0a11eaab340a57335b277 (diff)
downloadgsoc2013-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
Diffstat (limited to 'libempathy-gtk/empathy-main-window.c')
-rw-r--r--libempathy-gtk/empathy-main-window.c2
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;
}