ubuntu-touch-coreapps-reviewers team mailing list archive
-
ubuntu-touch-coreapps-reviewers team
-
Mailing list archive
-
Message #01414
[Merge] lp:~mzanetti/reminders-app/confirm-autocorrection-on-save into lp:reminders-app
Michael Zanetti has proposed merging lp:~mzanetti/reminders-app/confirm-autocorrection-on-save into lp:reminders-app.
Commit message:
fix lost unconfirmed words when using autocorrection
Requested reviews:
Ubuntu Reminders app developers (reminders-app-dev)
For more details, see:
https://code.launchpad.net/~mzanetti/reminders-app/confirm-autocorrection-on-save/+merge/255730
--
Your team Ubuntu Reminders app developers is requested to review the proposed merge of lp:~mzanetti/reminders-app/confirm-autocorrection-on-save into lp:reminders-app.
=== modified file 'src/app/qml/components/RtfButton.qml'
--- src/app/qml/components/RtfButton.qml 2015-03-16 00:44:20 +0000
+++ src/app/qml/components/RtfButton.qml 2015-04-09 17:51:31 +0000
@@ -38,9 +38,10 @@
opacity: enabled ? 1 : 0.5
- MouseArea {
+ AbstractButton {
id: mouseArea
anchors.fill: parent
+ activeFocusOnPress: false
onClicked: root.clicked()
}
=== modified file 'src/app/qml/ui/EditNoteView.qml'
--- src/app/qml/ui/EditNoteView.qml 2015-03-16 00:44:20 +0000
+++ src/app/qml/ui/EditNoteView.qml 2015-04-09 17:51:31 +0000
@@ -629,6 +629,7 @@
height: parent.height
iconColor: UbuntuColors.green
onClicked: {
+ noteTextArea.focus = false;
saveNote();
root.exitEditMode(root.note);
}
Follow ups