~josharenson/unity8/fix-greeter-password-focus

« back to all changes in this revision

Viewing changes to qml/Greeter/WideView.qml

  • Committer: Josh Arenson
  • Date: 2016-02-24 18:49:12 UTC
  • Revision ID: joshua.arenson@canonical.com-20160224184912-ngs3kr0yic0mbs5i
Fix issue where a passwordless user was logged in automatically.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    // so that it can be replaced in tests with a mock object
38
38
    property var inputMethod: Qt.inputMethod
39
39
 
 
40
    signal promptlessLogin()
40
41
    signal selected(int index)
41
42
    signal responded(string response)
42
43
    signal tease()
128
129
 
129
130
            locked: root.locked
130
131
 
 
132
            onPromptlessLogin: root.promptlessLogin()
131
133
            onSelected: root.selected(index)
132
134
            onResponded: root.responded(response)
133
135
        }