Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

S3 Delete No/Yes button labels are backwards #81

Merged
merged 2 commits into from
Aug 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private Dialog newConfirmationDialog(String title, String message) {
protected void doRun() {
Dialog dialog = newConfirmationDialog(getText() + "?", "Are you sure you want to delete the selected buckets?");

if (Window.OK != dialog.open()) {
if (dialog.open() != 1) {
actionCanceled();
actionFinished();
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private Dialog newConfirmationDialog(String title, String message) {
@Override
protected void doRun() {
Dialog dialog = newConfirmationDialog(getText() + "?", "Are you sure you want to delete the selected objects?");
if (dialog.open() != Window.OK) {
if (dialog.open() != 1) {
actionCanceled();
actionFinished();
return;
Expand Down