Hide Minimize button from FileDialog?
-
@MTOLANI not possible using qml. try
Qt::WindowFlags flags = windowFlags(); Qt::WindowFlags helpFlag = Qt::WindowMaximizeButtonHint; flags = flags & (~helpFlag); setWindowFlags(flags);
@MTOLANI not possible using qml. try
Qt::WindowFlags flags = windowFlags();
Qt::WindowFlags helpFlag = Qt::WindowMaximizeButtonHint;
flags = flags & (~helpFlag);
setWindowFlags(flags);