Merge lp:~boiko/dialer-app/fix_missing_bottomedge into lp:dialer-app

Proposed by Gustavo Pichorim Boiko
Status: Merged
Approved by: Tiago Salem Herrmann
Approved revision: 190
Merged at revision: 192
Proposed branch: lp:~boiko/dialer-app/fix_missing_bottomedge
Merge into: lp:dialer-app
Diff against target: 20 lines (+1/-2)
1 file modified
src/qml/DialerPage/DialerPage.qml (+1/-2)
To merge this branch: bzr merge lp:~boiko/dialer-app/fix_missing_bottomedge
Reviewer Review Type Date Requested Status
Tiago Salem Herrmann (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+227959@code.launchpad.net

Commit message

Set the bottom edge visibility directly and not using the QML states. For some reason the bottom edge widget doesn't like it.

Description of the change

Set the bottom edge visibility directly and not using the QML states. For some reason the bottom edge widget doesn't like it.

== Checklist ==
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/dialer-app) on device or emulator?
Yes

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

If you changed the packaging (debian), did you add a core-dev as a reviewer to this MP?
N/A

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Tiago Salem Herrmann (tiagosh) 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.
No, but failures are not related with the changes

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 'src/qml/DialerPage/DialerPage.qml'
2--- src/qml/DialerPage/DialerPage.qml 2014-07-18 14:10:23 +0000
3+++ src/qml/DialerPage/DialerPage.qml 2014-07-23 17:06:31 +0000
4@@ -60,7 +60,6 @@
5 PropertyChanges {
6 target: page
7 tools: emptyToolbar
8- bottomEdgeEnabled: false
9 }
10 PropertyChanges {
11 target: contactLabel
12@@ -70,7 +69,7 @@
13 ]
14
15 // -------- Bottom Edge Setup -----
16- bottomEdgeEnabled: true
17+ bottomEdgeEnabled: !greeter.greeterActive
18 bottomEdgePageSource: Qt.resolvedUrl("../HistoryPage/HistoryPage.qml")
19 bottomEdgeExpandThreshold: bottomEdgePage ? bottomEdgePage.delegateHeight * 3 : 0
20 bottomEdgeTitle: i18n.tr("Recent")

Subscribers

People subscribed via source and target branches