I want to set minimal size for my QML window. But if I set the minimal width and height inside my main.qml I've got the window that has minimal size bigger than I set & expect. The problem is that the minimal size is applied to the view inside window frame and the window frame and caption size is not taken into account.
ApplicationWindow {
id: application
minimumWidth: 1024
minimumHeight: 768
visibility: "Maximized"
}
Is there a way to set application window minimal size taking into account window frame?
I use Qt 5.4.