From 23e40520d9384e3599e1cd685a2764fb97b4d353 Mon Sep 17 00:00:00 2001 From: Anna Date: Sun, 17 Apr 2022 00:23:05 -0400 Subject: [PATCH] fix: correct hint --- TheHeartOfTheParty/PluginUi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TheHeartOfTheParty/PluginUi.cs b/TheHeartOfTheParty/PluginUi.cs index 00355c1..f30a43e 100755 --- a/TheHeartOfTheParty/PluginUi.cs +++ b/TheHeartOfTheParty/PluginUi.cs @@ -60,7 +60,7 @@ internal class PluginUi : IDisposable { var titles = this.GetTitles(fem).ToList(); - var hint = titles.Count == 1 ? "Search 1 title..." : $"Search {titles} titles..."; + var hint = titles.Count == 1 ? "Search 1 title..." : $"Search {titles.Count} titles..."; ImGui.SetNextItemWidth(-1); ImGui.InputTextWithHint("##search", hint, ref this._searchText, 64);