Fix notification display of volume

Floating point is not useful here.
This commit is contained in:
Julian Ospald 2017-07-13 01:36:34 +02:00
parent 71e4b7b740
commit 94eac03ca1
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ impl Notif {
audio.acard audio.acard
.borrow() .borrow()
.chan_name()?, .chan_name()?,
vol) vol as i32)
} }
} }
}; };