fix: background not transparent anymore after opening megadb notification poup

This commit is contained in:
2026-04-10 18:06:10 +02:00
parent 4eedf620bf
commit 8d5b76e054
2 changed files with 0 additions and 4 deletions
@@ -1,12 +1,9 @@
from PySide6.QtWidgets import QMessageBox
import qdarktheme
class NotificationPopup(QMessageBox):
def __init__(self, title, text, infotext=None, parent=None):
super().__init__(parent)
qdarktheme.setup_theme("auto")
self.setIcon(QMessageBox.Icon.Information)
self.setWindowTitle(title)
self.setText(text)