diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-18 21:45:33 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-18 21:59:27 +0800 |
commit | 650117104f4e23cd2739e2e623dce070c0e02c33 (patch) | |
tree | 411a56783f350122ca81b4d3eaad88b3f7597f90 | |
parent | 499b394d0033da606c04e13afae4052818d9a431 (diff) | |
download | gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.tar gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.tar.gz gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.tar.bz2 gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.tar.lz gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.tar.xz gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.tar.zst gsoc2013-empathy-650117104f4e23cd2739e2e623dce070c0e02c33.zip |
save the geometry of the call window
-rw-r--r-- | src/empathy-call-window.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 6cd437553..503ac5c44 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -43,6 +43,7 @@ #include <libempathy-gtk/empathy-video-src.h> #include <libempathy-gtk/empathy-ui-utils.h> #include <libempathy-gtk/empathy-sound.h> +#include <libempathy-gtk/empathy-geometry.h> #define DEBUG_FLAG EMPATHY_DEBUG_VOIP #include <libempathy/empathy-debug.h> @@ -1076,6 +1077,8 @@ empathy_call_window_init (EmpathyCallWindow *self) g_object_ref (priv->ui_manager); g_object_unref (gui); + + empathy_geometry_bind (GTK_WINDOW (self), "call-window"); } /* Instead of specifying a width and a height, we specify only one size. That's |