diff options
| author | Jonathan Bauer | 2015-07-10 14:55:17 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-07-10 14:55:17 +0200 |
| commit | 558190a758eaf8376e930a7ee36906787a10472d (patch) | |
| tree | 7219bc1e0745637a9c6e582552c6f61602b520ad /dozentenmodul/src/main/java | |
| parent | [client] fix idpCombo beeing shown even though TestAccount auth method was saved (diff) | |
| download | tutor-module-558190a758eaf8376e930a7ee36906787a10472d.tar.gz tutor-module-558190a758eaf8376e930a7ee36906787a10472d.tar.xz tutor-module-558190a758eaf8376e930a7ee36906787a10472d.zip | |
[client] fix virt notice not coming back even if the checkbox wasn't clicked
Diffstat (limited to 'dozentenmodul/src/main/java')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtualizerNoticeWindow.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtualizerNoticeWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtualizerNoticeWindow.java index 014e1ee9..d94ed01a 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtualizerNoticeWindow.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtualizerNoticeWindow.java @@ -20,7 +20,7 @@ public class VirtualizerNoticeWindow extends VirtualizerNoticeWindowLayout { continueButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { - if (!Config.setVmwareLicenseAgreement(true)) + if (!Config.setVmwareLicenseAgreement(readCheck.getSelection())) LOGGER.error("Could not set the agreement to the vmware license in '" + Config.getPath() + "'!"); Config.store(); me.getShell().dispose(); |
