summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Bruder <[email protected]>2017-04-28 10:07:00 +0200
committerraveit65 <[email protected]>2017-06-16 14:41:04 +0200
commit8e7dc3287371acca17911a6a118c8ea5570de735 (patch)
tree460c4fba89560e5fd45bb51d8442fa39d1b5af9a
parent7df3511c658fed53fad6d8601035cea427f7fbcc (diff)
downloadmate-media-8e7dc3287371acca17911a6a118c8ea5570de735.tar.bz2
mate-media-8e7dc3287371acca17911a6a118c8ea5570de735.tar.xz
applet: round volume in popup of status icon
Most of the time the value was off almost 1 percent.
-rw-r--r--mate-volume-control/gvc-stream-status-icon.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mate-volume-control/gvc-stream-status-icon.c b/mate-volume-control/gvc-stream-status-icon.c
index 231b95d..2620c8b 100644
--- a/mate-volume-control/gvc-stream-status-icon.c
+++ b/mate-volume-control/gvc-stream-status-icon.c
@@ -421,25 +421,25 @@ update_icon (GvcStreamStatusIcon *icon)
_("Muted"),
description);
} else if (flags & MATE_MIXER_STREAM_CONTROL_VOLUME_READABLE) {
- gdouble display_volume = 100 * volume / normal;
+ guint display_volume = (guint) round (100.0 * volume / normal);
if (flags & MATE_MIXER_STREAM_CONTROL_HAS_DECIBEL) {
if (decibel > -MATE_MIXER_INFINITY) {
- markup = g_strdup_printf ("<b>%s: %.0f%%</b>\n"
+ markup = g_strdup_printf ("<b>%s: %u%%</b>\n"
"<small>%0.2f dB\n%s</small>",
icon->priv->display_name,
display_volume,
decibel,
description);
} else {
- markup = g_strdup_printf ("<b>%s: %.0f%%</b>\n"
+ markup = g_strdup_printf ("<b>%s: %u%%</b>\n"
"<small>-&#8734; dB\n%s</small>",
icon->priv->display_name,
display_volume,
description);
}
} else {
- markup = g_strdup_printf ("<b>%s: %.0f%%</b>\n<small>%s</small>",
+ markup = g_strdup_printf ("<b>%s: %u%%</b>\n<small>%s</small>",
icon->priv->display_name,
display_volume,
description);