Merge lp:~tiagosh/messaging-app/fix-spinner-incoming-messages into lp:messaging-app

Proposed by Tiago Salem Herrmann
Status: Merged
Approved by: Gustavo Pichorim Boiko
Approved revision: 310
Merged at revision: 320
Proposed branch: lp:~tiagosh/messaging-app/fix-spinner-incoming-messages
Merge into: lp:messaging-app
Diff against target: 11 lines (+1/-1)
1 file modified
src/qml/MessageDelegateFactory.qml (+1/-1)
To merge this branch: bzr merge lp:~tiagosh/messaging-app/fix-spinner-incoming-messages
Reviewer Review Type Date Requested Status
Gustavo Pichorim Boiko (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+249412@code.launchpad.net

Commit message

Disable spinner for incoming messages.

Description of the change

Disable spinner for incoming messages.

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

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

If you changed UI labels, did you update the pot file?
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
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.
No, but not related to the changes.

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 'src/qml/MessageDelegateFactory.qml'
2--- src/qml/MessageDelegateFactory.qml 2014-10-07 16:57:03 +0000
3+++ src/qml/MessageDelegateFactory.qml 2015-02-11 21:31:19 +0000
4@@ -114,7 +114,7 @@
5 width: units.gu(2)
6 visible: running && !selectionMode
7 // if temporarily failed or unknown status, then show the spinner
8- running: (textMessageStatus === HistoryThreadModel.MessageStatusUnknown ||
9+ running: !incoming && (textMessageStatus === HistoryThreadModel.MessageStatusUnknown ||
10 textMessageStatus === HistoryThreadModel.MessageStatusTemporarilyFailed)
11 }
12

Subscribers

People subscribed via source and target branches