Merge lp:~mzanetti/reminders-app/confirm-autocorrection-on-save into lp:reminders-app

Proposed by Michael Zanetti
Status: Merged
Approved by: Michael Zanetti
Approved revision: 405
Merged at revision: 405
Proposed branch: lp:~mzanetti/reminders-app/confirm-autocorrection-on-save
Merge into: lp:reminders-app
Diff against target: 27 lines (+3/-1)
2 files modified
src/app/qml/components/RtfButton.qml (+2/-1)
src/app/qml/ui/EditNoteView.qml (+1/-0)
To merge this branch: bzr merge lp:~mzanetti/reminders-app/confirm-autocorrection-on-save
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Alan Pope 🍺🐧🐱 πŸ¦„ (community) Approve
Review via email: mp+255730@code.launchpad.net

Commit message

fix lost unconfirmed words when using autocorrection

To post a comment you must log in.
Revision history for this message
Alan Pope 🍺🐧🐱 πŸ¦„ (popey) wrote :

Tested on krillin. Fixes the issue for me.

review: Approve
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/app/qml/components/RtfButton.qml'
2--- src/app/qml/components/RtfButton.qml 2015-03-16 00:44:20 +0000
3+++ src/app/qml/components/RtfButton.qml 2015-04-09 17:51:31 +0000
4@@ -38,9 +38,10 @@
5
6 opacity: enabled ? 1 : 0.5
7
8- MouseArea {
9+ AbstractButton {
10 id: mouseArea
11 anchors.fill: parent
12+ activeFocusOnPress: false
13 onClicked: root.clicked()
14 }
15
16
17=== modified file 'src/app/qml/ui/EditNoteView.qml'
18--- src/app/qml/ui/EditNoteView.qml 2015-03-16 00:44:20 +0000
19+++ src/app/qml/ui/EditNoteView.qml 2015-04-09 17:51:31 +0000
20@@ -629,6 +629,7 @@
21 height: parent.height
22 iconColor: UbuntuColors.green
23 onClicked: {
24+ noteTextArea.focus = false;
25 saveNote();
26 root.exitEditMode(root.note);
27 }

Subscribers

People subscribed via source and target branches