diff options
author | rbuj <[email protected]> | 2022-08-03 10:29:54 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-08-14 02:16:39 +0200 |
commit | 0ae3d7fdce73059fc124b969f27db11a6322a027 (patch) | |
tree | 09e2026b15343950cb6fab62e72f72d1c9e354b7 /mate-volume-control/gvc-stream-status-icon.c | |
parent | 44df49d11121858b4235a427376410eb091c31c5 (diff) | |
download | mate-media-0ae3d7fdce73059fc124b969f27db11a6322a027.tar.bz2 mate-media-0ae3d7fdce73059fc124b969f27db11a6322a027.tar.xz |
gvc-stream-status-icon: fix a volume rounding error (101% -> 100%)
Diffstat (limited to 'mate-volume-control/gvc-stream-status-icon.c')
-rw-r--r-- | mate-volume-control/gvc-stream-status-icon.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mate-volume-control/gvc-stream-status-icon.c b/mate-volume-control/gvc-stream-status-icon.c index ef1124a..0f7ee2b 100644 --- a/mate-volume-control/gvc-stream-status-icon.c +++ b/mate-volume-control/gvc-stream-status-icon.c @@ -381,6 +381,7 @@ static void update_icon (GvcStreamStatusIcon *icon) { guint volume = 0; + guint volume_percent = 0; gdouble decibel = 0; guint normal = 0; gboolean muted = FALSE; @@ -408,7 +409,7 @@ update_icon (GvcStreamStatusIcon *icon) /* Select an icon, they are expected to be sorted, the lowest index being * the mute icon and the rest being volume increments */ - if (volume <= 0 || muted) + if (volume == 0 || muted) n = 0; else n = CLAMP (3 * volume / normal + 1, 1, 3); @@ -425,7 +426,9 @@ update_icon (GvcStreamStatusIcon *icon) description = mate_mixer_stream_control_get_label (icon->priv->control); - guint volume_percent = (guint) round (100.0 * volume / normal); + if (normal != 0) + volume_percent = (guint) (100.0 * ((double) volume) / ((double) normal)); + if (muted) { markup = g_strdup_printf ("<b>%s: %s %u%%</b>\n<small>%s</small>", icon->priv->display_name, |