1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

included shortcut for Info Panel

This commit is contained in:
mehr-licht
2018-11-18 19:22:05 +00:00
parent a26d4fb499
commit 101e5d5035
4 changed files with 69 additions and 2 deletions

View File

@@ -434,6 +434,18 @@ class SnippetNoteDetail extends React.Component {
this.focusEditor()
}
break
// I key
case 73:
{
const isSuper = global.process.platform === 'darwin'
? e.metaKey
: e.ctrlKey
if (isSuper) {
e.preventDefault()
this.handleInfoButtonClick(e)
}
}
break
// L key
case 76:
{