summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java
diff options
context:
space:
mode:
authorJonathan Bauer2015-09-07 15:52:40 +0200
committerJonathan Bauer2015-09-07 15:52:40 +0200
commit59c790fbd8db2d726f888676132cbb630f92a74c (patch)
treeedc7b679465f1750004c5761a51d7fc32d9789e6 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java
parent[client] ConfigWindow -> back to "Close" (diff)
downloadtutor-module-59c790fbd8db2d726f888676132cbb630f92a74c.tar.gz
tutor-module-59c790fbd8db2d726f888676132cbb630f92a74c.tar.xz
tutor-module-59c790fbd8db2d726f888676132cbb630f92a74c.zip
[client] ImageListViewer now accepts a default FilterType given in the constructor
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java
index b034227e..53708dcb 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureChangeLinkedImageLayout.java
@@ -12,6 +12,7 @@ import javax.swing.JPanel;
import org.apache.log4j.Logger;
import org.openslx.dozmod.gui.Gui;
import org.openslx.dozmod.gui.control.ImageListViewer;
+import org.openslx.dozmod.gui.control.ImageListViewer.FilterType;
import org.openslx.dozmod.gui.helper.GridManager;
@@ -52,7 +53,7 @@ public class LectureChangeLinkedImageLayout extends JDialog {
GridManager grid = new GridManager(contentPanel, 1);
// create the imageListViewer and add it to the pane.
- imageListViewer = new ImageListViewer();
+ imageListViewer = new ImageListViewer(FilterType.LINKABLE);
// Panel for the buttons at the bottom
JPanel buttonPane = new JPanel();