Merge lp:~seb128/camera-app/delete-dialog-order into lp:camera-app

Proposed by Sebastien Bacher
Status: Rejected
Rejected by: Bill Filler
Proposed branch: lp:~seb128/camera-app/delete-dialog-order
Merge into: lp:camera-app
Diff against target: 27 lines (+5/-5)
1 file modified
SlideshowView.qml (+5/-5)
To merge this branch: bzr merge lp:~seb128/camera-app/delete-dialog-order
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Needs Fixing
Ubuntu Phablet Team Pending
Review via email: mp+240699@code.launchpad.net

Commit message

List the delete action first in the confirmation dialog

Description of the change

List the delete action first in the confirmation dialog

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
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Bill Filler (bfiller) wrote :

this got included in the multi-selection MR which landed

Unmerged revisions

420. By Sebastien Bacher

List the delete action first in the confirmation dialog

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'SlideshowView.qml'
2--- SlideshowView.qml 2014-10-03 15:41:22 +0000
3+++ SlideshowView.qml 2014-11-05 09:51:22 +0000
4@@ -305,11 +305,6 @@
5 }
6
7 Button {
8- text: i18n.tr("Cancel")
9- color: UbuntuColors.warmGrey
10- onClicked: PopupUtils.close(deleteDialog)
11- }
12- Button {
13 text: i18n.tr("Delete")
14 color: UbuntuColors.orange
15 onClicked: {
16@@ -326,6 +321,11 @@
17 PopupUtils.close(deleteDialog);
18 }
19 }
20+ Button {
21+ text: i18n.tr("Cancel")
22+ color: UbuntuColors.warmGrey
23+ onClicked: PopupUtils.close(deleteDialog)
24+ }
25 }
26 }
27 }

Subscribers

People subscribed via source and target branches