Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.12.6
-
None
Description
Hi. I recently ran into a strange problem while coding.( I am Korean)
QML TextField echoMode: TextInput.Password.
Windows platform not allows non-ascii(korea lanaguage) IME input.
but MacOS platform allows non-ascii(korea lanaguage) IME input.
why? this bug?
echoMode: TextInput.Password, is Properties Windows platform specific? Or am I missing a setting?
I hope from MacOS platform not allows non-ascii IME input.
help me please...! Thanks you.
====code====
Window {
visible: true
width: 640
height: 480
title: "window"
Column {
width: parent.width
height: parent.height
spacing: 10
TextField
{ id: test echoMode: TextInput.Password width: 200 }Text
{ id: test2 width: 200 text: test.text }}
}