From 19605e385f67c5a1ee9ab5f0df7a8135bcaf09e1 Mon Sep 17 00:00:00 2001 From: Caraxi Date: Fri, 21 Aug 2020 10:19:53 +0930 Subject: [PATCH] Use InputTextWithHint --- Dalamud/Plugin/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/PluginInstallerWindow.cs b/Dalamud/Plugin/PluginInstallerWindow.cs index db7fa089a..6f4dfcf8b 100644 --- a/Dalamud/Plugin/PluginInstallerWindow.cs +++ b/Dalamud/Plugin/PluginInstallerWindow.cs @@ -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);