diff options
| author | Lukáš Tyrychtr <[email protected]> | 2022-02-18 15:44:48 +0100 |
|---|---|---|
| committer | Victor Kareh <[email protected]> | 2026-05-28 14:35:16 -0400 |
| commit | 3c551b0be9051298782b4797eccaa27ca3ce81f5 (patch) | |
| tree | 23e1a1cbfc54163cfa440b5c7e7300bd58071ea1 | |
| parent | 5af4ee3a59c50e10b0b0cbcb9562bbda9adde250 (diff) | |
| download | mate-power-manager-3c551b0be9051298782b4797eccaa27ca3ce81f5.tar.bz2 mate-power-manager-3c551b0be9051298782b4797eccaa27ca3ce81f5.tar.xz | |
Replicate the icon tooltip in its title as well so a11y technologies can pick it up
| -rw-r--r-- | src/gpm-tray-icon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gpm-tray-icon.c b/src/gpm-tray-icon.c index 607b762..e93b0e1 100644 --- a/src/gpm-tray-icon.c +++ b/src/gpm-tray-icon.c @@ -94,6 +94,7 @@ gpm_tray_icon_set_tooltip (GpmTrayIcon *icon, const gchar *tooltip) g_return_val_if_fail (tooltip != NULL, FALSE); gtk_status_icon_set_tooltip_text (icon->priv->status_icon, tooltip); +gtk_status_icon_set_title (icon->priv->status_icon, tooltip); return TRUE; } |
