소스 검색

Remove duplicate menu item

trethaller 4 년 전
부모
커밋
61ab37d006
1개의 변경된 파일0개의 추가작업 그리고 7개의 파일을 삭제
  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());