diff --git a/Components/Input.qml b/Components/Input.qml index b7b01a2..4163fc3 100644 --- a/Components/Input.qml +++ b/Components/Input.qml @@ -98,7 +98,7 @@ Column { contentItem: Text { text: model.name font.pointSize: root.font.pointSize * 0.8 - font.capitalization: Font.Capitalize + font.capitalization: Font.AllLowercase color: selectUser.highlightedIndex === index ? root.palette.highlight.hslLightness >= 0.7 ? "#444" : "white" : root.palette.window.hslLightness >= 0.8 ? root.palette.highlight.hslLightness >= 0.8 ? "#444" : root.palette.highlight : "white" verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter @@ -211,7 +211,7 @@ Column { id: username text: config.ForceLastUser == "true" ? selectUser.currentText : null font.bold: true - font.capitalization: config.AllowBadUsernames == "false" ? Font.Capitalize : Font.MixedCase + font.capitalization: config.AllowBadUsernames == "false" ? Font.AllLowercase : Font.MixedCase anchors.centerIn: parent height: root.font.pointSize * 3 width: parent.width @@ -506,4 +506,4 @@ Column { onTriggered: failed = false running: false } -} \ No newline at end of file +}