From: Dan Breslau Date: Wed, 26 Oct 2016 03:41:29 +0000 (-0400) Subject: For the TrustAnchor dialog, CANCEL should be the default. X-Git-Tag: v0.9.6.1^0 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot-ui.git;a=commitdiff_plain;h=ac29bce25074b99a585dcdd74c90b261be026461 For the TrustAnchor dialog, CANCEL should be the default. --- diff --git a/src/moonshot-trust-anchor-dialog.vala b/src/moonshot-trust-anchor-dialog.vala index ee205a9..b22c874 100644 --- a/src/moonshot-trust-anchor-dialog.vala +++ b/src/moonshot-trust-anchor-dialog.vala @@ -147,7 +147,7 @@ class TrustAnchorDialog : Dialog this.add_buttons(_("Cancel"), ResponseType.CANCEL, _("Confirm"), ResponseType.OK); - this.set_default_response(ResponseType.OK); + this.set_default_response(ResponseType.CANCEL); var content_area = this.get_content_area(); ((Box) content_area).set_spacing(12);