Merge lp:~michael-sheldon/ubuntu-keyboard/fix-1264860 into lp:ubuntu-keyboard

Proposed by Michael Sheldon
Status: Merged
Approved by: Bill Filler
Approved revision: 155
Merged at revision: 156
Proposed branch: lp:~michael-sheldon/ubuntu-keyboard/fix-1264860
Merge into: lp:ubuntu-keyboard
Diff against target: 12 lines (+2/-0)
1 file modified
qml/keys/ExtendedKeysSelector.qml (+2/-0)
To merge this branch: bzr merge lp:~michael-sheldon/ubuntu-keyboard/fix-1264860
Reviewer Review Type Date Requested Status
Bill Filler (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+215647@code.launchpad.net

Commit message

Switch back to normal character mode if in shifted mode after entering extended characters.

Description of the change

Switch back to normal character mode if in shifted mode after entering extended characters.

To post a comment you must log in.
Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

Are there any related MPs required for this MP to build/function as expected? Please list.

 * No

Is your branch in sync with latest trunk (e.g. bzr pull lp:trunk -> no changes)

 * Yes

Did you perform an exploratory manual test run of your code change and any related functionality on device or emulator?

 * Yes

Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/ubuntu-keyboard) on device or emulator?

 * Yes (minus non-functional AP tests)

If you changed the UI, was the change specified/approved by design?

 * No change

If you changed the packaging (debian), did you subscribe a core-dev to this MP?

 * No change

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
155. By Michael Sheldon

Merge from trunk

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Bill Filler (bfiller) wrote :

Did you perform an exploratory manual test run of the code change and any related functionality on device or emulator?
yes

Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/<package-name>) on device or emulator?
yes

Did CI run pass? If not, please explain why.
yes

Have you checked that submitter has accurately filled out the submitter checklist and has taken no shortcut?
yes

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qml/keys/ExtendedKeysSelector.qml'
2--- qml/keys/ExtendedKeysSelector.qml 2014-03-03 16:21:35 +0000
3+++ qml/keys/ExtendedKeysSelector.qml 2014-04-15 14:44:16 +0000
4@@ -134,6 +134,8 @@
5 onReleased: {
6 key.highlight = false;
7 event_handler.onKeyReleased(modelData);
8+ if (popover.parent.activeKeypadState === "SHIFTED" && popover.parent.state === "CHARACTERS")
9+ popover.parent.activeKeypadState = "NORMAL"
10 popover.closePopover();
11 }
12 }

Subscribers

People subscribed via source and target branches