summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2015-07-10 14:55:17 +0200
committerJonathan Bauer2015-07-10 14:55:17 +0200
commit558190a758eaf8376e930a7ee36906787a10472d (patch)
tree7219bc1e0745637a9c6e582552c6f61602b520ad
parent[client] fix idpCombo beeing shown even though TestAccount auth method was saved (diff)
downloadtutor-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
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/VirtualizerNoticeWindow.java2
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();