Return back from fullscreen on Mac
Unsolved
General and Desktop
-
Hello.
Today i faced with one problem with Qt 5.5 on Mac. If i calls showNormal right after showFullScreen, it does not work correct. I stay on separate desktop and it is gray. Looks like widget is stay full screen. Here is my test code:
int main(int argv, char **args) { QApplication app(argv, args); QWidget window; window.show(); window.showFullScreen(); window.showNormal(); return app.exec(); }
Is it bug in Qt or i do something wrong?
-
Why should the widget be closed?
You do not close it.
Afterwindow.showNormal();
is it still in full-screen mode or just maximized?