Support player arguments like --no-border in mpv (#616)

This commit is contained in:
Etoh 2023-07-03 19:10:39 +01:00
parent 4c516129e2
commit 884d79bed3

View File

@ -69,7 +69,7 @@ class MpvPlayer(BasePlayer):
argValue = argValue[1:-1] argValue = argValue[1:-1]
else: else:
argName = argToAdd argName = argToAdd
argValue = "yes" argValue = ""
args[argName] = argValue args[argName] = argValue
return args return args