diff options
-rw-r--r-- | src/controls/TextField.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/TextField.qml b/src/controls/TextField.qml index 9d543aea..d8829403 100644 --- a/src/controls/TextField.qml +++ b/src/controls/TextField.qml @@ -557,7 +557,7 @@ Control { font: textInput.font horizontalAlignment: textInput.horizontalAlignment verticalAlignment: textInput.verticalAlignment - opacity: !textInput.text.length ? 1 : 0 + opacity: !textInput.text.length && !textInput.inputMethodComposing ? 1 : 0 color: __panel ? __panel.placeholderTextColor : "darkgray" clip: contentWidth > width; elide: Text.ElideRight |