From 954cb1da0deeab873e2b9eeda7b44f4e9c4d0e3c Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Thu, 26 Jan 2023 15:34:34 +0500 Subject: [PATCH] desktop: `iconIndex` is required for icons in jumplist --- apps/web/desktop/jumplist.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/desktop/jumplist.ts b/apps/web/desktop/jumplist.ts index 5ae6e58cc..7f496b551 100644 --- a/apps/web/desktop/jumplist.ts +++ b/apps/web/desktop/jumplist.ts @@ -34,6 +34,7 @@ function windows() { items: [ { program: process.execPath, + iconIndex: 0, iconPath: AssetManager.icon("note-add", { format: "ico" }), args: "new note", description: "Create a new note", @@ -42,6 +43,7 @@ function windows() { }, { program: process.execPath, + iconIndex: 0, iconPath: AssetManager.icon("notebook-add", { format: "ico" }), args: "new notebook", description: "Create a new notebook", @@ -50,6 +52,7 @@ function windows() { }, { program: process.execPath, + iconIndex: 0, iconPath: AssetManager.icon("reminder-add", { format: "ico" }), args: "new reminder", description: "Add a new reminder",