diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-11-12 12:20:32 +0100 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-11-15 10:47:05 +0100 |
commit | 27aa4503ea4ea1dd328081dfe4d4a73672fd7d2d (patch) | |
tree | d7404e33f161c5956402a45bd0abbd01ce626bf1 | |
parent | 32586ef86f825a79cb65585c88a9ab921a387bb2 (diff) |
windows: add tooltip to systray widget
Report that ogCLient is running when you hover the systray.
-rw-r--r-- | src/windows/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index 26dd4f5..bd88852 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -56,7 +56,7 @@ def create_image(): def create_systray(): menu = Menu(MenuItem('Powered by Soleta Networks!', lambda icon, item: 1)) - icon = Icon('ogClient', create_image(), menu=menu) + icon = Icon('ogClient', create_image(), menu=menu, tooltip="ogClient - Running") assert icon.icon icon.run() |