fix: QAction import - moved from QtWidgets to QtGui for PyQt6 compatibility
This commit is contained in:
parent
56a6a5c622
commit
18289eb646
|
|
@ -6,7 +6,8 @@ System tray implementation with right-click menu.
|
||||||
Replaces the floating icon with a proper tray icon.
|
Replaces the floating icon with a proper tray icon.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from PyQt6.QtWidgets import QSystemTrayIcon, QMenu, QAction, QApplication
|
from PyQt6.QtWidgets import QSystemTrayIcon, QMenu, QApplication
|
||||||
|
from PyQt6.QtGui import QAction
|
||||||
from PyQt6.QtCore import QTimer, pyqtSignal, QObject
|
from PyQt6.QtCore import QTimer, pyqtSignal, QObject
|
||||||
from PyQt6.QtGui import QIcon, QColor, QPainter, QFont, QFontMetrics
|
from PyQt6.QtGui import QIcon, QColor, QPainter, QFont, QFontMetrics
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue