~mardy/reminders-app/new-api

« back to all changes in this revision

Viewing changes to src/app/qml/components/EditTagsDialog.qml

fix predictive text input.

Approved by Riccardo Padovani, Ubuntu Phone Apps Jenkins Bot, Nekhelesh Ramananthan.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
                border.width: units.dp(1)
99
99
                border.color: "black"
100
100
                height: Math.min(5, tagsListView.count) * units.gu(4)
101
 
                visible: textField.text.length > 0 && (textField.focus || tagsListView.focus)
 
101
                visible: (textField.text.length > 0 || textField.inputMethodComposing) && (textField.focus || tagsListView.focus)
102
102
 
103
103
                ListView {
104
104
                    id: tagsListView