diff options
Diffstat (limited to 'libempathy-gtk/empathy-main-window.c')
-rw-r--r-- | libempathy-gtk/empathy-main-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-main-window.c b/libempathy-gtk/empathy-main-window.c index 7543c456e..8883fa306 100644 --- a/libempathy-gtk/empathy-main-window.c +++ b/libempathy-gtk/empathy-main-window.c @@ -868,9 +868,9 @@ main_window_configure_event_cb (GtkWidget *widget, g_source_remove (window->size_timeout_id); } - window->size_timeout_id = g_timeout_add (500, - (GSourceFunc) main_window_configure_event_timeout_cb, - window); + window->size_timeout_id = g_timeout_add_seconds (1, + (GSourceFunc) main_window_configure_event_timeout_cb, + window); return FALSE; } |