diff options
| author | Kuersat Akmaz | 2020-07-05 19:20:17 +0200 |
|---|---|---|
| committer | Kuersat Akmaz | 2020-07-05 19:22:55 +0200 |
| commit | 1e6f4f27ba804fb5da646f0cbde195c3e04b01bc (patch) | |
| tree | a6ad1e6a7313ec57b4770a19abd1ffc6aa317c33 /dozentenmodul/src/main/java/org | |
| parent | [client] Disabled cboFilter for Students in ImageList (diff) | |
| download | tutor-module-1e6f4f27ba804fb5da646f0cbde195c3e04b01bc.tar.gz tutor-module-1e6f4f27ba804fb5da646f0cbde195c3e04b01bc.tar.xz tutor-module-1e6f4f27ba804fb5da646f0cbde195c3e04b01bc.zip | |
[client] Diabled cboFilter for Students in LectureList
students dont need it
Issue : #3727
Diffstat (limited to 'dozentenmodul/src/main/java/org')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureListWindow.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureListWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureListWindow.java index 6bed9136..a3bc0d6b 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureListWindow.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/LectureListWindow.java @@ -492,6 +492,9 @@ public class LectureListWindow extends LectureListWindowLayout { btnDeleteLecture.setEnabled(false); btnEditLecture.setEnabled(false); btnNewLecture.setEnabled(false); + + cboFilter.setVisible(false); + cboFilter.setEnabled(false); } public void filterByImageBaseId(final String imageBaseId) { |
