summaryrefslogtreecommitdiffstats
path: root/panel/candidatepanel.py
diff options
context:
space:
mode:
authorHuang Peng <shawn.p.huang@gmail.com>2008-07-08 09:58:23 +0800
committerHuang Peng <shawn.p.huang@gmail.com>2008-07-08 10:10:00 +0800
commit5175a113e99a86085d754ebc44e68bb8167d0df9 (patch)
treec0a6a0ee670fadf0d21f95754a2469ec24078561 /panel/candidatepanel.py
parentcd34aa1c1667d4c41cd9af280d168b9abe00e64a (diff)
downloadibus-5175a113e99a86085d754ebc44e68bb8167d0df9.tar.gz
ibus-5175a113e99a86085d754ebc44e68bb8167d0df9.tar.xz
ibus-5175a113e99a86085d754ebc44e68bb8167d0df9.zip
Make labels as same size in candidates window.
Diffstat (limited to 'panel/candidatepanel.py')
-rw-r--r--panel/candidatepanel.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/panel/candidatepanel.py b/panel/candidatepanel.py
index b96e36b..1807884 100644
--- a/panel/candidatepanel.py
+++ b/panel/candidatepanel.py
@@ -46,7 +46,9 @@ class CandidateArea (gtk.HBox):
def _create_ui (self):
if self._orientation == gtk.ORIENTATION_VERTICAL:
self._vbox1 = gtk.VBox ()
+ self._vbox1.set_homogeneous (True)
self._vbox2 = gtk.VBox ()
+ self._vbox2.set_homogeneous (True)
self.pack_start (self._vbox1, False, False, 4)
self.pack_start (VSeparator(), False, False, 0)
self.pack_start (self._vbox2, True, True, 4)