diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-09 20:20:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-09 20:20:51 +0800 |
commit | 9280234db0c507bcaee37841fa2f129ccfa87b0b (patch) | |
tree | d1791e1055712f15748f27b5cce9ee9e233fd1a3 | |
parent | cb117f3038211d0ca8fe416c77fe47b588d8304f (diff) | |
download | gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.tar gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.tar.gz gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.tar.bz2 gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.tar.lz gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.tar.xz gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.tar.zst gsoc2013-empathy-9280234db0c507bcaee37841fa2f129ccfa87b0b.zip |
chat-window: save the size of the window when disposing
The size wasn't saved when the window was closed before the timeout was
fired (#601190).
-rw-r--r-- | src/empathy-chat-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 7f4978da1..ccbfff67a 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -1510,6 +1510,7 @@ chat_window_finalize (GObject *object) g_object_unref (priv->chatroom_manager); if (priv->save_geometry_id != 0) { g_source_remove (priv->save_geometry_id); + chat_window_save_geometry_timeout_cb (window); } if (priv->notification != NULL) { |