From d6fdb99fd005e3c6e4da7de10c429bc37ee30f76 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 23 Aug 2021 08:31:06 +0200 Subject: [PATCH] fix: allow smaller size icons --- 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 f5450315d..90bf5ea87 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1477,7 +1477,7 @@ namespace Dalamud.Interface.Internal.Windows if (icon != null) { - if (icon.Height != PluginIconHeight || icon.Width != PluginIconWidth) + if (icon.Height > PluginIconHeight || icon.Width > PluginIconWidth) { Log.Error($"Icon at {manifest.IconUrl} was not of the correct resolution."); return;