Skip to content

Commit 29b4ede

Browse files
committed
Rename file search window
1 parent b124d1a commit 29b4ede

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

ContentEditor.App/Imgui/Tools/RszDataFinder.cs renamed to ContentEditor.App/Imgui/Tools/FileSearchWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
namespace 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 = "";

ContentEditor.App/NativeWindows/EditorWindow.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)