Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/activity.py b/activity.py
index c7f2a91..23d3e40 100644
--- a/activity.py
+++ b/activity.py
@@ -44,28 +44,39 @@ class Activity(activity.Activity):
# RadioToolButton
self._long_btn = RadioToolButton()
+ self._long_btn.set_tooltip("long")
self._long_btn.props.icon_name = "long"
self._vol_btn = RadioToolButton()
+ self._vel_btn.set_tooltip("vol")
self._vol_btn.props.icon_name = "vol"
self._vol_btn.props.group = self._long_btn
self._area_btn = RadioToolButton()
+ self._area_btn.set_tooltip("area")
self._area_btn.props.icon_name = "area"
self._area_btn.props.group = self._long_btn
self._peso_btn = RadioToolButton()
+ self._peso_btn.set_tooltip("peso")
self._peso_btn.props.icon_name = "peso"
self._peso_btn.props.group = self._long_btn
self._vel_btn = RadioToolButton()
+ self._vel_btn.set_tooltip("vel")
self._vel_btn.props.icon_name = "vel"
self._vel_btn.props.group = self._long_btn
self._time_btn = RadioToolButton()
+ self._time_btn.set_tooltip("time")
self._time_btn.props.icon_name = "time"
self._time_btn.props.group = self._long_btn
+ self._temp_btn = RadioToolButton()
+ self._temp_btn.props.icon_name = "temp"
+ self._temp_btn.props.group = self._long_btn
+ self._temp_btn.set_tooltip("temp")
+
toolbarbox.toolbar.insert(self._long_btn, -1)
toolbarbox.toolbar.insert(self._vol_btn, -1)
toolbarbox.toolbar.insert(self._area_btn, -1)