~renatofilho/ubuntu-filemanager-app/import-contact

« back to all changes in this revision

Viewing changes to src/app/qml/ui/ConfirmDialogWithInput.qml

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2016-07-18 22:55:32 UTC
  • Revision ID: renato.filho@canonical.com-20160718225532-mr1oa7jhfmziswqk
Does not upercase inital letter on input dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        objectName: "inputField"
39
39
        focus: true
40
40
        // Avoid need to press enter to make "Ok" button enabled.
41
 
        inputMethodHints: Qt.ImhNoPredictiveText
 
41
        inputMethodHints: Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase
42
42
        validator: RegExpValidator {
43
43
            regExp: /.+/
44
44
        }