mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 04:34:16 +01:00
fix: allow smaller size icons
This commit is contained in:
parent
b1a596a598
commit
d6fdb99fd0
1 changed files with 1 additions and 1 deletions
|
|
@ -1477,7 +1477,7 @@ namespace Dalamud.Interface.Internal.Windows
|
||||||
|
|
||||||
if (icon != null)
|
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.");
|
Log.Error($"Icon at {manifest.IconUrl} was not of the correct resolution.");
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue