diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index ef77ee499..99559372f 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -97,7 +97,7 @@ internal class PluginInstallerWindow : Window, IDisposable private bool hasDevPlugins = false; private string searchText = string.Empty; - private bool prefilledSearchTexted = false; + private bool isSearchTextPrefilled = false; private PluginSortKind sortKind = PluginSortKind.Alphabetical; private string filterText = Locs.SortBy_Alphabetical; @@ -203,7 +203,7 @@ internal class PluginInstallerWindow : Window, IDisposable _ = pluginManager.ReloadPluginMastersAsync(); - if (!this.prefilledSearchTexted) this.searchText = string.Empty; + if (!this.isSearchTextPrefilled) this.searchText = string.Empty; this.sortKind = PluginSortKind.Alphabetical; this.filterText = Locs.SortBy_Alphabetical; @@ -220,9 +220,9 @@ internal class PluginInstallerWindow : Window, IDisposable { Service.Get().QueueSave(); - if (this.prefilledSearchTexted) + if (this.isSearchTextPrefilled) { - this.prefilledSearchTexted = false; + this.isSearchTextPrefilled = false; this.searchText = string.Empty; } } @@ -281,7 +281,7 @@ internal class PluginInstallerWindow : Window, IDisposable /// The search term. public void SetSearchText(string text) { - this.prefilledSearchTexted = true; + this.isSearchTextPrefilled = true; this.searchText = text; }