diff options
author | Jose <jose@zeroc.com> | 2017-02-24 20:52:33 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-02-24 20:52:33 +0100 |
commit | 5b7bcd54d1d3f63df36b344998267cd16b15e0b2 (patch) | |
tree | 5b395f62eb02ea37dc325b4ca201d0a187a08b62 /java/src | |
parent | Fix (ICE-7148) - Provide a way to preload assemblies (diff) | |
download | ice-5b7bcd54d1d3f63df36b344998267cd16b15e0b2.tar.bz2 ice-5b7bcd54d1d3f63df36b344998267cd16b15e0b2.tar.xz ice-5b7bcd54d1d3f63df36b344998267cd16b15e0b2.zip |
Revert "Connection wizard dialog becomes readonly"
This reverts commit fbee9d73e72db929a1f9ee86605c6cb2de72041a.
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java b/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java index 581e4615712..a12122ea4cf 100644 --- a/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java +++ b/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java @@ -1059,7 +1059,7 @@ public class SessionKeeper { ConnectionWizardDialog(JDialog parent) { - super(_coordinator.getMainFrame(), true); + super(parent, true); _x509CertificateDefault = true; initialize("New Connection - IceGrid GUI", parent); _connectNow = true; @@ -1067,7 +1067,7 @@ public class SessionKeeper ConnectionWizardDialog(ConnectionInfo inf, JDialog parent) { - super(_coordinator.getMainFrame(), true); + super(parent, true); _conf = inf; _x509CertificateDefault = false; initialize("Edit Connection - IceGrid GUI", parent); |