Skip to content

Commit

Permalink
fix(UeliCommandExtension): Show dark icon on dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschwendener committed Feb 13, 2024
1 parent 9a76c32 commit b1aa62a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/Extensions/UeliCommand/UeliCommandExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export class UeliCommandExtension implements Extension {
public getImage(): Image {
return {
url: `file://${this.assetPathResolver.getExtensionAssetPath(this.id, "app-icon-dark.png")}`,
urlOnDarkBackground: `file://${this.assetPathResolver.getExtensionAssetPath(this.id, "app-icon-light.png")}`,
urlOnLightBackground: `file://${this.assetPathResolver.getExtensionAssetPath(this.id, "app-icon-dark.png")}`,
urlOnDarkBackground: `file://${this.assetPathResolver.getExtensionAssetPath(this.id, "app-icon-dark.png")}`,
urlOnLightBackground: `file://${this.assetPathResolver.getExtensionAssetPath(this.id, "app-icon-light.png")}`,
};
}

Expand Down

0 comments on commit b1aa62a

Please sign in to comment.