summaryrefslogtreecommitdiff
path: root/invest-applet/invest/applet.py
diff options
context:
space:
mode:
Diffstat (limited to 'invest-applet/invest/applet.py')
-rw-r--r--invest-applet/invest/applet.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/invest-applet/invest/applet.py b/invest-applet/invest/applet.py
index f59e92eea..4cd5ad7ad 100644
--- a/invest-applet/invest/applet.py
+++ b/invest-applet/invest/applet.py
@@ -17,6 +17,7 @@ class InvestApplet:
self.applet.setup_menu_from_file (
None, "Invest_Applet.xml",
None, [("About", self.on_about),
+ ("Help", self.on_help),
("Prefs", self.on_preferences),
("Refresh", self.on_refresh)
])
@@ -62,6 +63,9 @@ class InvestApplet:
def on_about(self, component, verb):
invest.about.show_about()
+ def on_help(self, component, verb):
+ invest.help.show_help()
+
def on_preferences(self, component, verb):
invest.preferences.show_preferences(self)
self.reload_ilw()