summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java
diff options
context:
space:
mode:
authorJonathan Bauer2016-08-30 16:22:00 +0200
committerJonathan Bauer2016-08-30 16:22:00 +0200
commita86ce12c98f39f48b3029f53fcf9b6b9af7426f5 (patch)
treeccccdb1a52c56e9d8e1afd85fdab4376415f3d57 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java
parent[client] added "expires" column in ImageTable + increased MainWindow width a bit (diff)
downloadtutor-module-a86ce12c98f39f48b3029f53fcf9b6b9af7426f5.tar.gz
tutor-module-a86ce12c98f39f48b3029f53fcf9b6b9af7426f5.tar.xz
tutor-module-a86ce12c98f39f48b3029f53fcf9b6b9af7426f5.zip
[client] fix "Show published images" button not beeing properly initialized
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java
index df47ecf1..937c5c3c 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImageListWindowLayout.java
@@ -78,6 +78,7 @@ public abstract class ImageListWindowLayout extends CompositePage {
"New Lecture", ICON_SIZE_Y, buttonPanel));
btnShowPublishedImages = new JButton(showPublishedImagesLabel, Gui.getScaledIconResource("/img/published-vm-icon.png",
"Published Lectures", ICON_SIZE_Y, buttonPanel));
+ btnShowPublishedImages.setVisible(false); // this gets enabled later when the API version can be queried
btnSwitchView = new JButton(switchViewButtonLabel, Gui.getScaledIconResource("/img/switch-icon.png",
"Switch", ICON_SIZE_Y, buttonPanel));
buttonPanel.add(btnNewVm);
@@ -87,10 +88,8 @@ public abstract class ImageListWindowLayout extends CompositePage {
buttonPanel.add(btnDownload);
buttonPanel.add(Box.createHorizontalStrut(5));
buttonPanel.add(btnNewLecture);
- if (Session.isImagePublishSupported()) {
- buttonPanel.add(Box.createHorizontalStrut(5));
- buttonPanel.add(btnShowPublishedImages);
- }
+ buttonPanel.add(Box.createHorizontalStrut(5));
+ buttonPanel.add(btnShowPublishedImages);
buttonPanel.add(Box.createHorizontalGlue());
buttonPanel.add(btnSwitchView);