Merge lp:~bfiller/ubuntu-keyboard/fix-1277186 into lp:ubuntu-keyboard

Proposed by Bill Filler
Status: Merged
Approved by: Gustavo Pichorim Boiko
Approved revision: 139
Merged at revision: 139
Proposed branch: lp:~bfiller/ubuntu-keyboard/fix-1277186
Merge into: lp:ubuntu-keyboard
Diff against target: 14 lines (+3/-1)
1 file modified
qml/Keyboard.qml (+3/-1)
To merge this branch: bzr merge lp:~bfiller/ubuntu-keyboard/fix-1277186
Reviewer Review Type Date Requested Status
Gustavo Pichorim Boiko (community) Approve
PS Jenkins bot continuous-integration Approve
Łukasz Zemczak Pending
Review via email: mp+208706@code.launchpad.net

Commit message

fix lp:1277186 to allow keyboard to be swiped down as before

Description of the change

fix lp:1277186 to allow keyboard to be swiped down as before

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
138. By Bill Filler

fix more issues with swiping down in qt5.2

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Bill Filler (bfiller) 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/<package-name>) on device or emulator?
YES

139. By Bill Filler

cleaner way to set visible flag

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Gustavo Pichorim Boiko (boiko) wrote :

Did you perform an exploratory manual test run of the code change and any related functionality 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

Code looks good and works as expected

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qml/Keyboard.qml'
2--- qml/Keyboard.qml 2014-01-21 22:51:18 +0000
3+++ qml/Keyboard.qml 2014-02-28 18:25:27 +0000
4@@ -104,7 +104,9 @@
5 drag.axis: Drag.YAxis;
6 drag.minimumY: 0
7 drag.maximumY: parent.height
8- drag.filterChildren: true
9+ //fix for lp:1277186
10+ //only filter children when wordRibbon visible
11+ drag.filterChildren: wordRibbon.visible
12
13 onReleased: {
14 if (keyboardSurface.y > jumpBackThreshold) {

Subscribers

People subscribed via source and target branches