Details
-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
5.15.10
-
dc5d14c3963e25a3664ed116856e7f604e43b7af
Description
Input file
import QtQuick 2.15
Item {
anchors: {
top: parent.top;
bottom: parent.bottom;
}
}
Outcomes
- Qt 6.3.1: qmlformat does not change anything (correct)
- Qt 5.15.10: qmlformat adds line breaks to the anchor elements (wrong):
import QtQuick 2.15
Item {
anchors: {
top:
parent.top;
bottom:
parent.bottom;
}
}