From a4fa4bf6ba8601bb3d53e17956035f69a16ff733 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 27 Sep 2024 11:52:05 -0500 Subject: [PATCH] Fix other issues arising from the migration --- webappify/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webappify/__init__.py b/webappify/__init__.py index b7b8847..629b0fe 100644 --- a/webappify/__init__.py +++ b/webappify/__init__.py @@ -118,13 +118,13 @@ class WebWindow(QtWidgets.QWidget): Create and return the menu for the tray icon """ # Create the actions for the menu - self.restore_action = QtWidgets.QAction('&Restore', self) + self.restore_action = QtGui.QAction('&Restore', self) self.restore_action.triggered.connect(self._restore_window) - self.minimize_action = QtWidgets.QAction('Mi&nimize', self) + self.minimize_action = QtGui.QAction('Mi&nimize', self) self.minimize_action.triggered.connect(self.close) - self.maximize_action = QtWidgets.QAction('Ma&ximize', self) + self.maximize_action = QtGui.QAction('Ma&ximize', self) self.maximize_action.triggered.connect(self._maximize_window) - self.quit_action = QtWidgets.QAction('&Quit', self) + self.quit_action = QtGui.QAction('&Quit', self) self.quit_action.triggered.connect(self.app.quit) # Create the menu and add the actions tray_icon_menu = QtWidgets.QMenu(self)