Open Tobger opened 2 years ago
Test case:
text: Qt.formatTime(currentTime,"hh:mm") source: "qrc:/close.png"
Formatted using QML Formatter v1.2.4:
text: Qt.formatTime(currentTime, "hh: mm") source: "qrc: /close.png"
Note the spaces after the : inside the strings. This changes user-facing text and I think the file path is invalid.
Expected formatted output:
text: Qt.formatTime(currentTime, "hh:mm") source: "qrc:/close.png"
(A space was added after currentTime,, but not inside the strings)
currentTime,
Test case:
Formatted using QML Formatter v1.2.4:
Note the spaces after the : inside the strings. This changes user-facing text and I think the file path is invalid.
Expected formatted output:
(A space was added after
currentTime,
, but not inside the strings)