From c1b9910f7fabd66e7f8a2f0de56ec6eece5fc371 Mon Sep 17 00:00:00 2001 From: Georgi Davidkov Date: Fri, 10 May 2024 17:18:14 +0300 Subject: [PATCH] add description for the shortcut key --- js/connect-related.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/connect-related.js b/js/connect-related.js index 73a9861..dc8ee58 100644 --- a/js/connect-related.js +++ b/js/connect-related.js @@ -211,7 +211,7 @@ async function startApp(appName, context) { if (glueApp) { glueApp .start(context) - .then(() => {}) + .then(() => { }) .catch((e) => { console.warn('Failed to start app'); console.warn(e); @@ -407,7 +407,7 @@ async function openFeedbackForm() { async function registerHotkey() { await gluePromise; - glue.hotkeys.register('Ctrl+Alt+T', () => { + glue.hotkeys.register({ hotkey: 'Ctrl+Alt+T', description: 'Bring app to front for seamless workflow.' }, () => { glue.windows.my().focus(); }); }