diff options
Diffstat (limited to 'src/Plugins/Monitors/Volume.hs')
-rw-r--r-- | src/Plugins/Monitors/Volume.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Plugins/Monitors/Volume.hs b/src/Plugins/Monitors/Volume.hs index d7122d1..22b7f6c 100644 --- a/src/Plugins/Monitors/Volume.hs +++ b/src/Plugins/Monitors/Volume.hs @@ -78,7 +78,7 @@ formatVolBar lo hi v = formatVolVBar :: Integer -> Integer -> Integer -> Monitor String formatVolVBar lo hi v = - showVerticalBar (100 * x) where x = percent v lo hi + showVerticalBar (100 * x) x where x = percent v lo hi switchHelper :: VolumeOpts -> (VolumeOpts -> Maybe String) |