Skip to content

Commit

Permalink
add description for the shortcut key
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavidkov committed May 10, 2024
1 parent 32148e8 commit c1b9910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/connect-related.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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();
});
}
Expand Down

0 comments on commit c1b9910

Please sign in to comment.