diff options
Diffstat (limited to 'java/src/IceGridGUI/Application/ServerInstance.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/ServerInstance.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/ServerInstance.java b/java/src/IceGridGUI/Application/ServerInstance.java index 1f1cdd68aa4..67338efac94 100755 --- a/java/src/IceGridGUI/Application/ServerInstance.java +++ b/java/src/IceGridGUI/Application/ServerInstance.java @@ -44,7 +44,7 @@ class ServerInstance extends ListTreeNode implements Server, PropertySetParent public boolean[] getAvailableActions() { boolean[] actions = new boolean[ACTION_COUNT]; - actions[COPY] = true; + actions[COPY] = !_ephemeral; Object clipboard = getCoordinator().getClipboard(); if(clipboard != null && |