diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-01 15:55:02 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-01 15:55:02 +0000 |
commit | 67fa21e1b2706b23dcc41f4b6df8a196a3f7a7e0 (patch) | |
tree | 0a90ec379874e94a87d159411f3c753b16d08b9e /java/src/IceGridGUI/Application/ServiceInstanceEditor.java | |
parent | renamed INSTALL.VISUAL_C++ to INSTALL.WINDOWS (diff) | |
download | ice-67fa21e1b2706b23dcc41f4b6df8a196a3f7a7e0.tar.bz2 ice-67fa21e1b2706b23dcc41f4b6df8a196a3f7a7e0.tar.xz ice-67fa21e1b2706b23dcc41f4b6df8a196a3f7a7e0.zip |
Fixed bug #1730
Diffstat (limited to 'java/src/IceGridGUI/Application/ServiceInstanceEditor.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/ServiceInstanceEditor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/ServiceInstanceEditor.java b/java/src/IceGridGUI/Application/ServiceInstanceEditor.java index 9c7162b3052..489de0884f4 100755 --- a/java/src/IceGridGUI/Application/ServiceInstanceEditor.java +++ b/java/src/IceGridGUI/Application/ServiceInstanceEditor.java @@ -166,7 +166,7 @@ class ServiceInstanceEditor extends CommunicatorChildEditor ServiceInstanceDescriptor descriptor = (ServiceInstanceDescriptor)service.getDescriptor(); Coordinator coordinator = service.getCoordinator(); - boolean isEditable = !coordinator.substitute(); + boolean isEditable = service.isEphemeral() || !coordinator.substitute(); Utils.Resolver resolver = isEditable ? null : ((TreeNode)service.getParent()).getResolver(); |