How to automatically maximize a subWindw in a QMdiArea
Unsolved
General and Desktop
-
@Audetto
https://www.qtcentre.org/threads/41101-QMdiArea-and-adding-sub-windowtry using setWindowState(Qt::WindowMaximized) on the sub window instance it self :
m_mdiArea->addSubWindow(Editor)->setWindowState(Qt::WindowMaximized) ;
That worked in Qt in 2006, so I imagine it's the same two decades later...? :)