diff options
| author | Jonathan Bauer | 2015-08-27 16:40:24 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-08-27 16:40:24 +0200 |
| commit | a00fe20862ea2ce8496ea0a95a8bb83216e87ee3 (patch) | |
| tree | 2944c8c7dfda7d047e47e32bf4dde8781741babd | |
| parent | [client] fix multiple details windows opennig (diff) | |
| download | tutor-module-a00fe20862ea2ce8496ea0a95a8bb83216e87ee3.tar.gz tutor-module-a00fe20862ea2ce8496ea0a95a8bb83216e87ee3.tar.xz tutor-module-a00fe20862ea2ce8496ea0a95a8bb83216e87ee3.zip | |
[client] filter the table of the columns we dont wanna see when linking an existing lecture to another image
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java index 76a41973..512aecdc 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureImageListPage.java @@ -6,6 +6,7 @@ import javax.swing.event.ListSelectionListener; import org.apache.log4j.Logger; import org.openslx.bwlp.thrift.iface.ImageSummaryRead; import org.openslx.dozmod.gui.control.table.ImageTable; +import org.openslx.dozmod.gui.control.table.ListTable.ListTableColumn; import org.openslx.dozmod.gui.wizard.Wizard; import org.openslx.dozmod.gui.wizard.layout.LectureImageListPageLayout; import org.openslx.dozmod.state.LectureWizardState; @@ -31,6 +32,9 @@ public class LectureImageListPage extends LectureImageListPageLayout { super(wizard); this.state = state; setPageComplete(false); + imageTable.setColumnVisible(ImageTable.COL_OS, false); + imageTable.setColumnVisible(ImageTable.COL_TEMPLATE, false); + imageTable.setColumnVisible(ImageTable.COL_SIZE, false); imageTable.getSelectionModel().addListSelectionListener(new ListSelectionListener() { @Override public void valueChanged(ListSelectionEvent e) { |
