summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-22 18:07:34 +0200
committerwm4 <wm4@nowhere>2014-09-22 18:07:34 +0200
commit2cfc35892c7cd359304c8fc9c7f855678eb9b57c (patch)
tree1951f06a69ae8b51c374649666a24d7a7699fad0
parentf605b03f631e770ce6e99893134554603d6fbe40 (diff)
downloadmpv-2cfc35892c7cd359304c8fc9c7f855678eb9b57c.tar.bz2
mpv-2cfc35892c7cd359304c8fc9c7f855678eb9b57c.tar.xz
command: no space before "%" in volume default OSD message
More consistent with other output, such as the terminal status line. Also see issue #1103.
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index fb4b0a12df..c37e45faec 100644
--- a/player/command.c
+++ b/player/command.c
@@ -3024,7 +3024,7 @@ static const struct property_osd_display {
{ "clock", "Clock" },
// audio
{ "volume", "Volume",
- .msg = "Volume: ${volume} % ${?mute==yes:(Muted)}",
+ .msg = "Volume: ${volume}% ${?mute==yes:(Muted)}",
.osd_progbar = OSD_VOLUME },
{ "mute", "Mute" },
{ "audio-delay", "A-V delay" },