mirror of
https://github.com/JakeStanger/system-tray.git
synced 2026-07-11 06:15:52 +01:00
[GH-ISSUE #6] tool_tip not present in StatusNotifierItem #1
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
JakeStanger/system-tray#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @frahz on GitHub (Jan 5, 2025).
Original GitHub issue: https://github.com/JakeStanger/system-tray/issues/6
The tooltip item is not present (commented out) in the
StatusNotifierItemstruct when initially converting from theDBusPropsinEvent::Add.I also see when
Event::Updateis called that the tooltip is present and subsequently updated in here:github.com/JakeStanger/system-tray@01e7c36c02/src/client.rs (L425-L430)Which then gets updated and set in ironbar:
github.com/JakeStanger/ironbar@998e5cecc0/src/modules/tray/mod.rs (L198-L200)Here is where its commented out:
github.com/JakeStanger/system-tray@01e7c36c02/src/item.rs (L80-L82)github.com/JakeStanger/system-tray@01e7c36c02/src/item.rs (L256)So just wanted to check if it's possible to have the tooltip present when creating the
StatusNotifierItemstruct before sending it through anEvent::Addevent.@JakeStanger commented on GitHub (Jan 5, 2025):
Good spot, thanks for this. The tooltip code was left commented out and then implemented after initial release, so I must have missed that part of it when doing so.
I'll stick a release out shortly which fixes this.