wf-shell
wf-shell copied to clipboard
Command-output tooltip execution spam
When a command_output_tooltip_* key is used we get excessive calling of the command on mouseovers.
https://github.com/WayfireWM/wf-shell/blob/3e7576f1a74abf746d3b6c3da914a428bbbd2ca7/src/panel/widgets/command-output.cpp#L131
The signal_query_tooltip callback is called for all mouse movement over the widget.
The tooltip's content is updated only once a second though https://github.com/WayfireWM/wf-shell/blob/3e7576f1a74abf746d3b6c3da914a428bbbd2ca7/src/panel/widgets/command-output.cpp#L117-L125
What I'd like to see is, the tooltip updated at $interval while it's open, as the button data is.