Commit 26d76be6 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #4550 from DonLakeFlyer/RemoveDoubleValidator

DoubleValidator causing problems with regional settings
parents a64e2cf6 bcb69abd
......@@ -20,10 +20,9 @@ QGCTextField {
property string _validateString
// At this point all Facts are numeric
validator: DoubleValidator {}
inputMethodHints: ScreenTools.isiOS ?
Qt.ImhNone : // iOS numeric keyboard has not done button, we can't use it
Qt.ImhFormattedNumbersOnly // Forces use of virtual numeric keyboard
inputMethodHints: ScreenTools.isiOS ?
Qt.ImhNone : // iOS numeric keyboard has not done button, we can't use it
Qt.ImhFormattedNumbersOnly // Forces use of virtual numeric keyboard
onEditingFinished: {
if (typeof qgcView !== 'undefined' && qgcView) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment