Remove fullscreen setting in config file

This commit is contained in:
Veronica Berglyd Olsen
2023-08-06 14:49:35 +02:00
parent 352b70d060
commit 6f1aa5b812
5 changed files with 16 additions and 37 deletions
+3 -3
View File
@@ -590,11 +590,11 @@ def testGuiMain_FocusFullMode(qtbot, nwGUI, projPath, mockRnd):
# Full Screen Mode
# ================
assert CONFIG.isFullScreen is False
assert nwGUI.windowState() & Qt.WindowFullScreen != Qt.WindowFullScreen
nwGUI.toggleFullScreenMode()
assert CONFIG.isFullScreen is True
assert nwGUI.windowState() & Qt.WindowFullScreen == Qt.WindowFullScreen
nwGUI.toggleFullScreenMode()
assert CONFIG.isFullScreen is False
assert nwGUI.windowState() & Qt.WindowFullScreen != Qt.WindowFullScreen
# qtbot.stop()