We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98cfaa commit 99f4b65Copy full SHA for 99f4b65
src/main.js
@@ -910,7 +910,7 @@ async function setupRustListeners() {
910
// Note: this API seems unavailable in Tauri's Rust backend, so we're using the JS API as a workaround
911
await listen('update_overlay_icon', async (evt) => {
912
// Enable or Disable our notification badge Overlay Icon
913
- await getCurrentWindow().setOverlayIcon(evt.payload.enable ? "icons/icon_badge_notification.png" : undefined);
+ await getCurrentWindow().setOverlayIcon(evt.payload.enable ? "./icons/icon_badge_notification.png" : undefined);
914
});
915
}
916
0 commit comments