From 08842819fc818394f30a2ee45f130accac9dd38c Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 24 Aug 2021 01:50:00 +0200 Subject: [PATCH] fix: rectangular -> square in error message --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 801980990..45b7071a2 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1757,7 +1757,7 @@ namespace Dalamud.Interface.Internal.Windows if (icon.Height != icon.Width) { - Log.Error($"Icon at {manifest.IconUrl} was not rectangular."); + Log.Error($"Icon at {manifest.IconUrl} was not square."); return; }