From c699c0242503b28fdde07114a5ad0b5af6c8249a Mon Sep 17 00:00:00 2001 From: Infi Date: Sun, 26 Feb 2023 21:05:51 +0100 Subject: [PATCH] small rename --- .../Windows/PluginInstaller/PluginInstallerWindow.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; }