Browse Source

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

Clément Espeute 11 months ago
parent
commit
298835e194
1 changed files with 1 additions and 0 deletions
  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() {
 					ide.showFileInResources(state.path);
 				}},
+				{ label : "Find References", enabled : hasPath, click : () -> Ide.inst.findPathRefs(state.path)},
 				{ label : null, isSeparator : true },
 			];
 		}