fix: correct hint

This commit is contained in:
Anna 2022-04-17 00:23:05 -04:00
parent 495363e520
commit 23e40520d9
1 changed files with 1 additions and 1 deletions

View File

@ -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);