diff options
| author | Michael Wilson | 2014-08-26 07:48:40 +0200 |
|---|---|---|
| committer | Michael Wilson | 2014-08-26 07:48:40 +0200 |
| commit | 2e86d9eecb15febde2fc5b4bc973b62a35c39b07 (patch) | |
| tree | 834d348f334fb4b3ff11bc5a0a05cb5e1c8f1d7e /Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java | |
| parent | Merge branch 'master' of git.openslx.org:openslx-ng/tutor-module (diff) | |
| download | tutor-module-2e86d9eecb15febde2fc5b4bc973b62a35c39b07.tar.gz tutor-module-2e86d9eecb15febde2fc5b4bc973b62a35c39b07.tar.xz tutor-module-2e86d9eecb15febde2fc5b4bc973b62a35c39b07.zip | |
download prüft jetzt auf label.text == null
Diffstat (limited to 'Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java')
| -rw-r--r-- | Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java b/Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java index aae76861..18df360e 100644 --- a/Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java +++ b/Dozentenmodul/src/gui/image/FTPEditDownloader_GUI.java @@ -207,7 +207,7 @@ public class FTPEditDownloader_GUI extends JFrame implements } lblPath.addPropertyChangeListener(new PropertyChangeListener() { public void propertyChange(PropertyChangeEvent arg0) { - if (lblPath.getText().isEmpty()) { + if (lblPath.getText() == null) { // wenn leer, dann upload button nicht freigeben btnDownloadStarten.setEnabled(false); btnDownloadStarten.setText("Bitte warten"); |
