diff options
author | Robert Sajdok <robert.sajdok@gmail.com> | 2011-02-28 17:17:33 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-28 17:17:33 +0800 |
commit | d8bb9ec37dd074d70115c481bb667318e833b893 (patch) | |
tree | 738020bd2319b9813ff58b129946a74b9aabde4c /src/empathy-main-window.c | |
parent | af14cf9bf6d5c19ca07245963def757408a0bdc5 (diff) | |
download | gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.tar gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.tar.gz gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.tar.bz2 gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.tar.lz gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.tar.xz gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.tar.zst gsoc2013-empathy-d8bb9ec37dd074d70115c481bb667318e833b893.zip |
Request a minimal size on the presence chooser
This avoid to make it completely disappear when resizing the window (#583317)
Diffstat (limited to 'src/empathy-main-window.c')
-rw-r--r-- | src/empathy-main-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index b53d1dbca..8e3f2d89b 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1851,6 +1851,7 @@ empathy_main_window_init (EmpathyMainWindow *window) gtk_widget_show (priv->presence_chooser); item = gtk_tool_item_new (); gtk_widget_show (GTK_WIDGET (item)); + gtk_widget_set_size_request (priv->presence_chooser, 10, -1); gtk_container_add (GTK_CONTAINER (item), priv->presence_chooser); gtk_tool_item_set_is_important (item, TRUE); gtk_tool_item_set_expand (item, TRUE); |