fix: simplify SVG icon for activity bar compatibility #10918
+2
−11
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.
Related GitHub Issue
Closes: #10917
Description
This PR attempts to address Issue #10917 where the activity bar icon does not appear after installation on some Windows environments with newer VS Code versions.
Changes made:
<defs>and<style>block)#000(via CSS class) tofill="currentColor"directly on the path elementUsing
currentColorinstead of a hardcoded color follows VS Code best practices for activity bar icons, allowing the icon to properly adapt to VS Code's theming system and potentially resolving rendering issues in newer VS Code versions.Test Procedure
Since this is a pure SVG file change that simplifies the icon structure, there are no automated tests to run. Manual verification is required.
Pre-Submission Checklist
Documentation Updates
Additional Notes
This is an attempt to fix the issue. Feedback and guidance are welcome. The changes follow VS Code's recommendations for activity bar icons:
currentColorfor proper theme integration