Use InputTextWithHint

This commit is contained in:
Caraxi 2020-08-21 10:19:53 +09:30
parent 5dd1e98c70
commit 19605e385f

View file

@ -58,7 +58,7 @@ namespace Dalamud.Plugin
ImGui.Text(Loc.Localize("InstallerHint", "This window allows you install and remove in-game plugins.\nThey are made by third-party developers."));
ImGui.SameLine();
ImGui.InputText("###XPlPluginInstaller_Search", ref this.searchText, 100);
ImGui.InputTextWithHint("###XPlPluginInstaller_Search", Loc.Localize("InstallerSearch", "Search"), ref this.searchText, 100);
ImGui.Separator();
ImGui.BeginChild("scrolling", new Vector2(0, 400), true, ImGuiWindowFlags.HorizontalScrollbar);