aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-03-08 23:57:31 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-03-08 23:57:31 +0800
commit7192bddb8705345b376a7fe6b478c4cdca49532e (patch)
tree4bb2edbe015ec57270f2e017ae4e868e8dc6616b /libempathy-gtk
parent65867af8da2b8a7977012ba38950f3f9198f74af (diff)
downloadgsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.tar
gsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.tar.gz
gsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.tar.bz2
gsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.tar.lz
gsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.tar.xz
gsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.tar.zst
gsoc2013-empathy-7192bddb8705345b376a7fe6b478c4cdca49532e.zip
If the main window already exists show it using empathy_window_present() instead of gtk_window_present(). Fixes bug #521051 (Marco Barisione).
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@709 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk')
-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;
}