Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-08-04 21:23:58 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-08-07 03:17:07 (GMT)
commit3dfc846d290ea1239516f5cf06687a4996af7b82 (patch)
treef75d476d2895ed396ffd9334ece4c9fead6ddd23 /activity.py
parent394413a48ab840ecc443b1e3ef9494f5e11cb30c (diff)
fix problem with invisible labels on Atmossphere toolbar
Signed-off-by: Rafael Ortiz <rafael@activitycentral.com>
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/activity.py b/activity.py
index daa25b1..b6c06b3 100644
--- a/activity.py
+++ b/activity.py
@@ -120,10 +120,9 @@ class AcousticMeasureActivity(activity.Activity):
self._t_h_bar = atm_toolbars.TempToolbar()
tb = gtk.HBox()
- self._t_h_bar.bigbox.reparent(tb)
- self._t_h_bar.bigbox.show_all()
- adj_button = ToolbarButton(page=tb,
- icon_name='preferences-system')
+ self._t_h_bar.show_all()
+ adj_button = ToolbarButton(page=self._t_h_bar,
+ icon_name='preferences-system')
toolbar_box.toolbar.insert(adj_button, -1)
adj_button.show()