File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1414
1515namespace ContentEditor . App ;
1616
17- public class RszDataFinder : IWindowHandler
17+ public class FileSearchWindow : IWindowHandler
1818{
19- public string HandlerName => "Data Finder " ;
19+ public string HandlerName => "File Search " ;
2020
2121 public bool HasUnsavedChanges => false ;
2222 private string ? classname = "" ;
Original file line number Diff line number Diff line change @@ -692,20 +692,20 @@ protected void ShowMainMenuBar()
692692 if ( ImGui . MenuItem ( "Bundle Manager" ) ) {
693693 ShowBundleManagement ( ) ;
694694 }
695- if ( workspace . Config . Entities . Any ( ) ) {
696- if ( ImGui . MenuItem ( "Entities" ) ) {
697- AddSubwindow ( new AppContentEditorWindow ( workspace ) ) ;
698- }
699- }
700- if ( ImGui . MenuItem ( "Data Search" ) ) {
701- AddSubwindow ( new RszDataFinder ( ) ) ;
695+ if ( ImGui . MenuItem ( "File Search" ) ) {
696+ AddSubwindow ( new FileSearchWindow ( ) ) ;
702697 }
703698 if ( ImGui . MenuItem ( "Texture Channel Packer" ) ) {
704699 AddSubwindow ( new TextureChannelPacker ( ) ) . Size = new Vector2 ( 1280 , 800 ) ;
705700 }
706701 if ( ImGui . MenuItem ( "File Upgrader" ) ) {
707702 AddSubwindow ( new FileUpgrader ( ) ) . Size = new Vector2 ( 1280 , 800 ) ;
708703 }
704+ if ( workspace . Config . Entities . Any ( ) ) {
705+ if ( ImGui . MenuItem ( "Entities" ) ) {
706+ AddSubwindow ( new AppContentEditorWindow ( workspace ) ) ;
707+ }
708+ }
709709 }
710710 ImGui . EndMenu ( ) ;
711711 }
You can’t perform that action at this time.
0 commit comments