Remove "EXPERIMENTAL" comment from MDI option

MDI doesn't have known bugs
This commit is contained in:
Sergio Martins
2021-08-29 17:43:21 +01:00
parent 78381badd1
commit 3fb8861eee

View File

@@ -55,7 +55,7 @@ enum MainWindowOption
{
MainWindowOption_None = 0, ///> No option set
MainWindowOption_HasCentralFrame = 1, ///> Makes the MainWindow always have a central frame, for tabbing documents
MainWindowOption_MDI = 2 ///> EXPERIMENTAL!!1 The layout will be MDI. DockWidgets can have arbitrary positions, not restricted by any layout
MainWindowOption_MDI = 2 ///> The layout will be MDI. DockWidgets can have arbitrary positions, not restricted by any layout
};
Q_DECLARE_FLAGS(MainWindowOptions, MainWindowOption)
Q_ENUM_NS(MainWindowOptions)