Cleaned up Edit menu
[pithos] / web_client / src / gr / grnet / pithos / web / client / commands / CutCommand.java
index de7fd9b..0e71aca 100644 (file)
@@ -63,7 +63,8 @@ public class CutCommand implements Command {
 
        @Override
        public void execute() {
-               containerPanel.hide();
+        if (containerPanel != null)
+                   containerPanel.hide();
 
         if (resource instanceof Folder) {
             app.getClipboard().setItem(Clipboard.CUT, (Folder) resource);