Window control buttons disappears when implementing w.showFullScreen();
Solved
General and Desktop
-
Hi,
Which OS are you on ?
-
@amitsgh said in Window control buttons disappears when implementing w.showFullScreen();:
Window control buttons in the top right corner disappears when applying w.showFullScreen()
This is actually exactly what full-screen usually means, also on Windows: there are no window decorations and no buttons to close the window or to minimize it. If you want the window to occupy the full screen but keep window decorations and these buttons then show the window maximised (setWindowState(Qt.WindowMaximized)).
-