Fix default MPD time format (#841)
Change the default value of the `time_format` setting in the mpd module so that it matches the default value used by `TimeWrapper`. This fixes a bug where the seconds weren't displaying correctly due to a typo. Before: `02:MS` After: `2:06`
This commit is contained in:
parent
90887964e1
commit
29f78b3207
@ -97,7 +97,7 @@ cleartext to the server.)"),
|
|||||||
color_map = {}
|
color_map = {}
|
||||||
max_field_len = 25
|
max_field_len = 25
|
||||||
max_len = 100
|
max_len = 100
|
||||||
time_format = "%M:MS"
|
time_format = "%m:%S"
|
||||||
truncate_fields = ("title", "album", "artist", "album_artist")
|
truncate_fields = ("title", "album", "artist", "album_artist")
|
||||||
hide_inactive = False
|
hide_inactive = False
|
||||||
on_leftclick = "switch_playpause"
|
on_leftclick = "switch_playpause"
|
||||||
|
Loading…
Reference in New Issue
Block a user