Skip to content

Commit e50583a

Browse files
committed
Do not exclude 256x256 icons from icon-sender
fixes: QubesOS/qubes-issues#10359
1 parent afd2e21 commit e50583a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

window-icon-updater/icon-sender

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class IconRetriever(object):
235235
# split the array into icons
236236
while index < len(icon_data):
237237
size = (icon_data[index], icon_data[index + 1])
238-
if size[0] < ICON_MAX_SIZE and size[1] < ICON_MAX_SIZE:
238+
if size[0] <= ICON_MAX_SIZE and size[1] <= ICON_MAX_SIZE:
239239
icons[size] = icon_data[index + 2:
240240
index + 2 + (size[0] * size[1])]
241241
index += 2 + (size[0] * size[1])

0 commit comments

Comments
 (0)