diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-08 09:58:23 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-08 10:10:00 +0800 |
| commit | 5175a113e99a86085d754ebc44e68bb8167d0df9 (patch) | |
| tree | c0a6a0ee670fadf0d21f95754a2469ec24078561 /panel/candidatepanel.py | |
| parent | cd34aa1c1667d4c41cd9af280d168b9abe00e64a (diff) | |
| download | ibus-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.py | 2 |
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) |
