aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-06-11 03:07:35 +0800
committerWill Thompson <will.thompson@collabora.co.uk>2011-06-24 17:45:38 +0800
commit6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1 (patch)
tree2f193fd65953986492a26577e8512d380a1519d6
parent8f42bd47699c9453aae13f9169a27a4d9bb80bb2 (diff)
downloadgsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.tar
gsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.tar.gz
gsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.tar.bz2
gsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.tar.lz
gsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.tar.xz
gsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.tar.zst
gsoc2013-empathy-6e61e4ff4b72e31a1f31205c9db3dc6cea8e64a1.zip
PresetDialog: make the window taller
The element we really care about the size of is the list of statuses past. So I moved the horizontal size request to that—the window has 6px of padding or so, so this makes it pretty much exactly the same width—and made the height request be in the golden ratio to it. I'm probably unusual in having enough statuses to fill my laptop screen vertically, but, subjectively, this makes the dialog look less stubby even now I've removed them all to test. https://bugzilla.gnome.org/show_bug.cgi?id=630943
-rw-r--r--libempathy-gtk/empathy-status-preset-dialog.ui4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-status-preset-dialog.ui b/libempathy-gtk/empathy-status-preset-dialog.ui
index 07d8f14b9..fcc868ebd 100644
--- a/libempathy-gtk/empathy-status-preset-dialog.ui
+++ b/libempathy-gtk/empathy-status-preset-dialog.ui
@@ -3,8 +3,6 @@
<requires lib="gtk+" version="2.16"/>
<!-- interface-naming-policy project-wide -->
<object class="GtkVBox" id="toplevel-vbox">
- <property name="width_request">420</property>
- <property name="height_request">260</property>
<property name="visible">True</property>
<property name="border_width">6</property>
<property name="orientation">vertical</property>
@@ -26,6 +24,8 @@
</child>
<child>
<object class="GtkScrolledWindow" id="scrolledwindow1">
+ <property name="width_request">408</property>
+ <property name="height_request">252</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="hscrollbar_policy">never</property>