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
=== modified file 'SlideshowView.qml'
--- SlideshowView.qml 2014-10-03 15:41:22 +0000
+++ SlideshowView.qml 2014-11-05 09:51:22 +0000
@@ -305,11 +305,6 @@
305 }305 }
306306
307 Button {307 Button {
308 text: i18n.tr("Cancel")
309 color: UbuntuColors.warmGrey
310 onClicked: PopupUtils.close(deleteDialog)
311 }
312 Button {
313 text: i18n.tr("Delete")308 text: i18n.tr("Delete")
314 color: UbuntuColors.orange309 color: UbuntuColors.orange
315 onClicked: {310 onClicked: {
@@ -326,6 +321,11 @@
326 PopupUtils.close(deleteDialog);321 PopupUtils.close(deleteDialog);
327 }322 }
328 }323 }
324 Button {
325 text: i18n.tr("Cancel")
326 color: UbuntuColors.warmGrey
327 onClicked: PopupUtils.close(deleteDialog)
328 }
329 }329 }
330 }330 }
331}331}

Subscribers

People subscribed via source and target branches