mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 04:58:49 +03:00
Fix placeholderTextColor not supported below Qt 5.12
This commit is contained in:
parent
7040be1d09
commit
6a0de004a2
1 changed files with 8 additions and 1 deletions
|
@ -122,7 +122,14 @@ Rectangle {
|
||||||
text: "asfkajsdf"
|
text: "asfkajsdf"
|
||||||
selectByMouse: true
|
selectByMouse: true
|
||||||
placeholderText: qsTr("Write a message...")
|
placeholderText: qsTr("Write a message...")
|
||||||
placeholderTextColor: colors.buttonText
|
//placeholderTextColor: colors.buttonText
|
||||||
|
// only set the anchors on Qt 5.12 or higher
|
||||||
|
// see https://doc.qt.io/qt-5/qml-qtquick-controls2-popup.html#anchors.centerIn-prop
|
||||||
|
Component.onCompleted: {
|
||||||
|
if (placeholderTextColor !== undefined)
|
||||||
|
placeholderTextColor = colors.buttonText
|
||||||
|
|
||||||
|
}
|
||||||
color: colors.text
|
color: colors.text
|
||||||
width: textInput.width
|
width: textInput.width
|
||||||
wrapMode: TextEdit.Wrap
|
wrapMode: TextEdit.Wrap
|
||||||
|
|
Loading…
Reference in a new issue