Skip to content

Commit 99f4b65

Browse files
committed
fix: test *another* Windows Icon path style
1 parent c98cfaa commit 99f4b65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ async function setupRustListeners() {
910910
// Note: this API seems unavailable in Tauri's Rust backend, so we're using the JS API as a workaround
911911
await listen('update_overlay_icon', async (evt) => {
912912
// Enable or Disable our notification badge Overlay Icon
913-
await getCurrentWindow().setOverlayIcon(evt.payload.enable ? "icons/icon_badge_notification.png" : undefined);
913+
await getCurrentWindow().setOverlayIcon(evt.payload.enable ? "./icons/icon_badge_notification.png" : undefined);
914914
});
915915
}
916916

0 commit comments

Comments
 (0)