From 4818f404115d5c07f66b3a76670f729558658277 Mon Sep 17 00:00:00 2001 From: Etoh Date: Tue, 15 Oct 2013 00:57:50 +0100 Subject: [PATCH] Add getIconPath to VLC --- syncplay/players/vlc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/syncplay/players/vlc.py b/syncplay/players/vlc.py index 9cfdbf1..279ca8a 100644 --- a/syncplay/players/vlc.py +++ b/syncplay/players/vlc.py @@ -172,6 +172,10 @@ class VlcPlayer(BasePlayer): if("vlc" in path.lower() and VlcPlayer.getExpandedPath(path)): return True return False + + @staticmethod + def getIconPath(path): + return constants.VLC_ICONPATH @staticmethod def getExpandedPath(playerPath):