Added icon on taskbar for Windows

This commit is contained in:
RemixDev 2020-08-22 15:19:33 +02:00
parent 923d57a2b6
commit 05e62f81e8

View file

@ -18,6 +18,11 @@ from deemix.utils.localpaths import getConfigFolder
server_lock = Lock()
if sys.platform == "win32":
import ctypes
myappid = 'RemixDev.deemix'
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid)
class LoginWindow(QDialog):
class CustomPage(QWebEnginePage):
def acceptNavigationRequest(self, url, type, main):