From 0c8c865defeea9fc334d0cf02c7fbb09e41f6106 Mon Sep 17 00:00:00 2001 From: Etoh Date: Thu, 29 Dec 2022 09:57:05 +0000 Subject: [PATCH] SecondaryOSD is now OSDType --- syncplay/players/basePlayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/players/basePlayer.py b/syncplay/players/basePlayer.py index eb5e0d5..8067c13 100755 --- a/syncplay/players/basePlayer.py +++ b/syncplay/players/basePlayer.py @@ -15,7 +15,7 @@ class BasePlayer(object): Display given message on player's OSD or similar means ''' def displayMessage( - self, message, duration=(constants.OSD_DURATION*1000), secondaryOSD=False, mood=constants.MESSAGE_NEUTRAL + self, message, duration=(constants.OSD_DURATION*1000), OSDType=constants.OSD_NOTIFICATION, mood=constants.MESSAGE_NEUTRAL ): raise NotImplementedError()