Procházet zdrojové kódy

[hide] Added "Find References" to FileView tab header

Clément Espeute před 11 měsíci
rodič
revize
298835e194
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      hide/view/FileView.hx

+ 1 - 0
hide/view/FileView.hx

@@ -220,6 +220,7 @@ class FileView extends hide.ui.View<{ path : String }> {
 				{ label : "Open in Resources", enabled : hasPath, click : function() {
 				{ label : "Open in Resources", enabled : hasPath, click : function() {
 					ide.showFileInResources(state.path);
 					ide.showFileInResources(state.path);
 				}},
 				}},
+				{ label : "Find References", enabled : hasPath, click : () -> Ide.inst.findPathRefs(state.path)},
 				{ label : null, isSeparator : true },
 				{ label : null, isSeparator : true },
 			];
 			];
 		}
 		}