diff options
Diffstat (limited to 'src/modules/popdowns/sideright.tsx')
| -rw-r--r-- | src/modules/popdowns/sideright.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/modules/popdowns/sideright.tsx b/src/modules/popdowns/sideright.tsx index d5ee9d5..ca3e51c 100644 --- a/src/modules/popdowns/sideright.tsx +++ b/src/modules/popdowns/sideright.tsx @@ -85,8 +85,16 @@ const Weather = () => { <label label={bind(weather, "condition").as(c => ellipsize(c, 16))} /> </box> <box vertical halign={Gtk.Align.END} valign={Gtk.Align.CENTER} className="other-data"> - <label xalign={0} label={bind(weather, "wind").as(w => ` ${w}`)} /> - <label xalign={0} label={bind(weather, "rainChance").as(r => ` ${r}`)} /> + <label + xalign={0} + label={bind(weather, "wind").as(w => ` ${w}`)} + tooltipText={bind(weather, "wind").as(w => `${w} wind speed`)} + /> + <label + xalign={0} + label={bind(weather, "rainChance").as(r => ` ${r}`)} + tooltipText={bind(weather, "rainChance").as(r => `${r} chance of rain`)} + /> </box> </centerbox> <box className="separator" /> |