Wip page auth discord

This commit is contained in:
2026-03-16 11:51:46 +01:00
parent 5cfecdf856
commit fd4cf5e51f
3 changed files with 203 additions and 131 deletions

View File

@@ -1,4 +1,6 @@
import webbrowser
from sys import platform
from os import environ
from PySide6 import QtGui
from PySide6.QtCore import Qt
@@ -12,6 +14,9 @@ from controllers.glow_animator import GlowAnimator
from controllers.window_dragger import WindowDragger
from fake_patch_notes import patch_note
# For Linux Wayland to authorize moving window
if platform.startswith('linux'):
environ["QT_QPA_PLATFORM"] = "xcb"
class MainWindow(QMainWindow):
def __init__(self, bundle_dir):