Fix: Fixed PNG-based .ico files rendering with black backgrounds #17924
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Resolved / Related Issues
What was wrong
Custom folder icons using PNG-based
.icofiles displayed with a black background instead of transparency in the sidebar and thumbnail previews. The issue occurred specifically when:.icofile was PNG-based.Root Cause
The
IsAlphaBitmap()method inWin32Helper.Storage.csonly detected semi-transparent pixels (0 < alpha < 255) but missed fully transparent pixels (alpha = 0).The Fix
Changed the alpha detection condition to catch all non-opaque pixels:
This ensures that any pixel with transparency (including alpha = 0) is detected, triggering the proper alpha bitmap conversion that preserves transparency.
Before and After Screenshots:
Steps used to test these changes
.icofile with transparent background.icofiles to ensure no regression.dllicons to confirm they still work correctly