Merge lp:~michael-sheldon/gallery-app/hide-toolbar-share-picker into lp:gallery-app

Proposed by Michael Sheldon
Status: Merged
Approved by: Arthur Mello
Approved revision: 1011
Merge reported by: Arthur Mello
Merged at revision: not available
Proposed branch: lp:~michael-sheldon/gallery-app/hide-toolbar-share-picker
Merge into: lp:gallery-app
Diff against target: 11 lines (+1/-1)
1 file modified
rc/qml/MediaViewer/MediaViewer.qml (+1/-1)
To merge this branch: bzr merge lp:~michael-sheldon/gallery-app/hide-toolbar-share-picker
Reviewer Review Type Date Requested Status
Arthur Mello (community) Approve
PS Jenkins bot continuous-integration Approve
Review via email: mp+225649@code.launchpad.net

Commit message

Hide the media viewer toolbar when displaying the share picker.

Description of the change

Hide the media viewer toolbar when displaying the share picker.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
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/gallery-app) on device or emulator?

 * Yes

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

 * No change

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

 * No change

Revision history for this message
Arthur Mello (artmello) 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/gallery-app) 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

Revision history for this message
Arthur Mello (artmello) wrote :

looks good

review: Approve
1012. By Michael Sheldon

Merge from trunk

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'rc/qml/MediaViewer/MediaViewer.qml'
2--- rc/qml/MediaViewer/MediaViewer.qml 2014-06-20 15:25:14 +0000
3+++ rc/qml/MediaViewer/MediaViewer.qml 2014-07-21 13:07:37 +0000
4@@ -64,7 +64,7 @@
5 (galleryPhotoViewer.currentItem ? galleryPhotoViewer.currentItem.isLoaded : false)
6
7 // tooolbar actions for the full view
8- property Item tools: media ? (media.type === MediaSource.Photo ?
9+ property Item tools: (media && !sharePicker.visible) ? (media.type === MediaSource.Photo ?
10 d.photoToolbar : d.videoToolbar)
11 : null
12

Subscribers

People subscribed via source and target branches