summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2018-01-21 15:40:52 -0800
committerKevin Mitchell <kevmitch@gmail.com>2018-01-26 21:50:38 -0800
commit8c8dcc698b394be4de5804313e8d8a7a4c094e2f (patch)
tree362462e6b0f89b94f883809e9e1eb98716f343ee /player
parent7eb34275732071acf779a0f241642411f91f78b7 (diff)
downloadmpv-8c8dcc698b394be4de5804313e8d8a7a4c094e2f.tar.bz2
mpv-8c8dcc698b394be4de5804313e8d8a7a4c094e2f.tar.xz
Revert "command: make pause display the same osd-msg-bar as seek"
This reverts commit 9812e276aa1bb0bddeb73677aa9e9f87e73cd930. This was apparently unpopular. I still think the pause OSD should be the same as seek even if it's not visible by default, but it seems that whether to display a given property change is currently conflated with what to display. The reverted behaviour can be restored by adding something like the following to input.conf: SPACE cycle pause; show_progress
Diffstat (limited to 'player')
-rw-r--r--player/command.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/player/command.c b/player/command.c
index 8e28fb9917..2da7834233 100644
--- a/player/command.c
+++ b/player/command.c
@@ -4324,9 +4324,7 @@ static const struct property_osd_display {
{"ab-loop-b", .msg = "A-B loop: ${ab-loop-a} - ${ab-loop-b}"},
{"audio-device", "Audio device"},
// By default, don't display the following properties on OSD
- {"pause",
- .seek_msg = OSD_SEEK_INFO_TEXT,
- .seek_bar = OSD_SEEK_INFO_BAR},
+ {"pause", NULL},
{"fullscreen", NULL},
{0}
};