diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-11-16 15:58:07 +0100 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-11-16 15:58:07 +0100 |
commit | 9f1b46e1e92906b4f57d0076233a956566736f7b (patch) | |
tree | e8ae340551bde8016f261b9d8225de9a3939fe4d /pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku | |
parent | 34ac0c6b303f09771d3d2dbd5d44e3b8e932d17c (diff) | |
download | pdf-over-9f1b46e1e92906b4f57d0076233a956566736f7b.tar.gz pdf-over-9f1b46e1e92906b4f57d0076233a956566736f7b.tar.bz2 pdf-over-9f1b46e1e92906b4f57d0076233a956566736f7b.zip |
do not force fido2 default if libfido2 is unavailable
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku')
-rw-r--r-- | pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku/MobileBKUFido2Composite.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku/MobileBKUFido2Composite.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku/MobileBKUFido2Composite.java index 547f217f..b0506596 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku/MobileBKUFido2Composite.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/mobilebku/MobileBKUFido2Composite.java @@ -48,7 +48,6 @@ public class MobileBKUFido2Composite extends StateComposite { this.fido2OptionsString = fido2Options; this.credential = null; this.userCancel = this.userSms = false; - this.btn_authenticate.setEnabled(WebAuthN.isAvailable()); } public boolean isDone() { return ((this.credential != null) || this.userCancel || this.userSms); } @@ -106,6 +105,7 @@ public class MobileBKUFido2Composite extends StateComposite { this.btn_authenticate = new Button(containerComposite, SWT.NATIVE); SWTUtils.anchor(btn_authenticate).top(50, -15).left(0, 90).right(100, -90); SWTUtils.addSelectionListener(btn_authenticate, this::beginAuthentication); + btn_authenticate.setEnabled(WebAuthN.isAvailable()); this.btn_cancel = new Button(containerComposite, SWT.NATIVE); SWTUtils.anchor(btn_cancel).bottom(100, -10).right(100, -10); @@ -124,7 +124,7 @@ public class MobileBKUFido2Composite extends StateComposite { @Override public void reloadResources() { - SWTUtils.setLocalizedText(btn_authenticate, "mobileBKU.authorize"); + SWTUtils.setLocalizedText(btn_authenticate, WebAuthN.isAvailable() ? "mobileBKU.authorize" : "common.unavailable"); SWTUtils.setLocalizedText(btn_cancel, "common.Cancel"); SWTUtils.setLocalizedText(btn_sms, "tanEnter.SMS"); SWTUtils.setLocalizedText(lnk_sigData, "mobileBKU.show"); |