Parcourir la source

Remove duplicate menu item

trethaller il y a 4 ans
Parent
commit
61ab37d006
1 fichiers modifiés avec 0 ajouts et 7 suppressions
  1. 0 7
      hide/view/FileTree.hx

+ 0 - 7
hide/view/FileTree.hx

@@ -132,13 +132,6 @@ class FileTree extends FileView {
 						js.Browser.window.alert(e);
 					}
 					} },
-				{ label : "Copy Relative Path", enabled : current != null, click : function() {
-					try {
-						ide.setClipboard(current);
-					} catch (e : Dynamic) {
-						js.Browser.window.alert(e);
-					}
-					} },
 				{ label : "Move", enabled : current != null, click : function() {
 					ide.chooseDirectory(function(dir) {
 						onRename(current, "/"+dir+"/"+current.split("/").pop());