We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd2e21 commit e50583aCopy full SHA for e50583a
window-icon-updater/icon-sender
@@ -235,7 +235,7 @@ class IconRetriever(object):
235
# split the array into icons
236
while index < len(icon_data):
237
size = (icon_data[index], icon_data[index + 1])
238
- if size[0] < ICON_MAX_SIZE and size[1] < ICON_MAX_SIZE:
+ if size[0] <= ICON_MAX_SIZE and size[1] <= ICON_MAX_SIZE:
239
icons[size] = icon_data[index + 2:
240
index + 2 + (size[0] * size[1])]
241
index += 2 + (size[0] * size[1])
0 commit comments