Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorC. Scott Ananian <cscott@laptop.org>2008-09-25 19:15:41 (GMT)
committer C. Scott Ananian <cscott@laptop.org>2008-09-28 15:52:21 (GMT)
commit8d2c656bff49d9357b759429032175e355116fb9 (patch)
treec53cd31719f24bffe458f41bdec6e394e7685164 /src
parenta04928fe98a578bb92929c771199fbfe69d04927 (diff)
Trac #8663: make the favorites view buttons square.
If there aren't many choices in the favorites view, the buttons got rectangular. This patch will keep them square.
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/view/home/HomeBox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/view/home/HomeBox.py b/src/jarabe/view/home/HomeBox.py
index 400ee8f..9b38c48 100644
--- a/src/jarabe/view/home/HomeBox.py
+++ b/src/jarabe/view/home/HomeBox.py
@@ -338,7 +338,7 @@ class FavoritesButton(RadioToolButton):
group=layout_item, active=False)
if layoutid == self._layout:
layout_item.set_active(True)
- layouts_grid.add(layout_item)
+ layouts_grid.pack_start(layout_item, fill=False)
layout_item.connect('toggled', self.__layout_activate_cb,
layoutid)
layouts_grid.show_all()