Skip to content

Commit

Permalink
fix: reorder icon names for consistency
Browse files Browse the repository at this point in the history
- prefer 'code' as default icon name
  • Loading branch information
ZanzyTHEbar committed Feb 17, 2025
1 parent 3e90578 commit 5991424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnome-extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class VSCodeWorkspacesExtension extends Extension {
workspacePath: GLib.build_filenamev([this._userConfigDir, 'Code - Insiders/User/workspaceStorage']),
},
];
private readonly _iconNames = ['vscode', 'code', 'vscodium', 'codium', 'code-insiders'];
private readonly _iconNames = ['code', 'vscode', 'vscodium', 'codium', 'code-insiders'];
private readonly FILE_URI_PREFIX: string = FILE_URI_PREFIX;

enable() {
Expand Down

0 comments on commit 5991424

Please sign in to comment.