diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-11-10 11:38:30 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-11-10 11:38:30 +0100 |
commit | 47feef09024f8ab76985d118637e14454a46c71e (patch) | |
tree | a550ccc548f92f73b0bc6f8ffb8db1215dd9e4f3 /src/notifier.c | |
parent | 2b2ee5a8610f20e51509a709a114826219051b2e (diff) | |
parent | 1b8c12e2f7f6bda8efa3c632f789521cdcf82fd0 (diff) | |
download | ayatana-indicator-power-47feef09024f8ab76985d118637e14454a46c71e.tar.gz ayatana-indicator-power-47feef09024f8ab76985d118637e14454a46c71e.tar.bz2 ayatana-indicator-power-47feef09024f8ab76985d118637e14454a46c71e.zip |
Merge branch 'tari01-pr/fix-theming'
Attributes GH PR #65: https://github.com/AyatanaIndicators/ayatana-indicator-power/pull/65
Diffstat (limited to 'src/notifier.c')
-rw-r--r-- | src/notifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifier.c b/src/notifier.c index e833e72..c513656 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -302,7 +302,7 @@ notification_show(IndicatorPowerNotifier * self) : _("Battery Critical"); pct = indicator_power_device_get_percentage(p->battery); body = g_strdup_printf(_("%.0f%% charge remaining"), pct); - icon_names = indicator_power_device_get_icon_names(p->battery); + icon_names = indicator_power_device_get_icon_names(p->battery, FALSE); if (icon_names && *icon_names) icon_name = icon_names[0]; else |