diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-20 16:03:48 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-20 16:06:20 +0800 |
commit | eb6f86cc365f373851b52a11e06578374d0af9d2 (patch) | |
tree | 9b6507f5601a78ee20972f9e21b53ecf7bb154f0 /src | |
parent | fed480fa086cba30816a5345499ceeb00ddd6d6c (diff) | |
download | gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.tar gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.tar.gz gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.tar.bz2 gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.tar.lz gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.tar.xz gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.tar.zst gsoc2013-empathy-eb6f86cc365f373851b52a11e06578374d0af9d2.zip |
roster-window: set a default height
600 seems to be a decent default height and that's already the one we use for
the log viewer window.
We continue relying on Gtk+ to pick the best width as there is no point making
the window wider as long as all the menus are displayed.
https://bugzilla.gnome.org/show_bug.cgi?id=674432
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-roster-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-roster-window.c b/src/empathy-roster-window.c index a8eb40808..8e4230488 100644 --- a/src/empathy-roster-window.c +++ b/src/empathy-roster-window.c @@ -2674,6 +2674,7 @@ empathy_roster_window_init (EmpathyRosterWindow *self) /* Load user-defined accelerators. */ roster_window_accels_load (); + gtk_window_set_default_size (GTK_WINDOW (self), -1, 600); /* Set window size. */ empathy_geometry_bind (GTK_WINDOW (self), GEOMETRY_NAME); |