summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java
diff options
context:
space:
mode:
authorSimon Rettberg2017-07-24 13:44:29 +0200
committerSimon Rettberg2017-07-24 13:44:29 +0200
commit6431d3df896c38d0c342afb551e8ad34f883c1e9 (patch)
treee1800da6d23f7c248b1573073b14ae4e60eac6d6 /dozentenmodul/src/main/java
parent[client] Add support for Feature.EXTEND_EXPIRED_VM (diff)
parent[client] Fix possible NPE in settings window (diff)
downloadtutor-module-6431d3df896c38d0c342afb551e8ad34f883c1e9.tar.gz
tutor-module-6431d3df896c38d0c342afb551e8ad34f883c1e9.tar.xz
tutor-module-6431d3df896c38d0c342afb551e8ad34f883c1e9.zip
Merge branch 'master' of git.openslx.org:openslx-ng/tutor-module
Diffstat (limited to 'dozentenmodul/src/main/java')
-rwxr-xr-xdozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
index 3f7550ed..4637b839 100755
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ConfigWindow.java
@@ -85,7 +85,8 @@ public class ConfigWindow extends ConfigWindowLayout implements UiFeedback, Acti
for (Enumeration<AbstractButton> btn = btnGroupLookAndFeel.getElements(); btn.hasMoreElements();) {
final JRadioButton b = (JRadioButton) btn.nextElement();
if (b.getToolTipText().equals(Config.getLookAndFeel())) {
- b.setSelected( true);
+ selectedLookAndFeel = b;
+ b.setSelected(true);
}
b.addActionListener(new ActionListener() {
@Override