Details
-
Bug
-
Resolution: Invalid
-
P1: Critical
-
None
-
6.5.3, 6.6.1
-
Windows 10, Visual C++ 2022
Description
When I activate Material style (using QQuickStyle::setStyle("Material")), TextField's height increases from 45 in Qt 6.4.3 to 56 in Qt 6.5.3 and 6.6.1.
import QtQuick import QtQuick.Window import QtQuick.Controls Window { width: 250 height: 200 visible: true Column { anchors.centerIn: parent spacing: 30 TextField { id: tf text: "TEST" } Label { text: "TextField's height = " + tf.height } } }
Attachments
Issue Links
- relates to
-
QTBUG-120067 Material 3 - Controls height issues
- In Progress