Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.2
-
None
Description
Simple example shows the strange resize behavior
Window wont resize horizontally and slides down if user tries to resize vertically
import QtQuick
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
minimumWidth: Screen.width
minimumHeight: Screen.height
}