0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 09:22:44 +00:00

Remove reference to hotkeys in Style Comments

Removed reference to hotkeys for commenting in the Style Editor since that is not implemented yet.  can be added back to match the Text Editor commenting snippet once implemented.
This commit is contained in:
Gazook89
2021-08-14 20:24:51 -05:00
parent 84698aa68f
commit 4653fcd782
2 changed files with 2 additions and 2 deletions

View File

@@ -129,7 +129,7 @@ module.exports = [
name : 'Add Comment',
icon : 'fas fa-code',
gen : dedent`\n
/* This is a comment that will not be rendered into your brew. Hotkey (Ctrl/Cmd + /). */
/* This is a comment that will not be rendered into your brew. */
`
},
]

View File

@@ -115,7 +115,7 @@ module.exports = [
{
name : 'Add Comment',
icon : 'fas fa-code',
gen : `\n/* This is a comment that will not be rendered into your brew. Hotkey (Ctrl/Cmd + /). */\n\n`
gen : `\n/* This is a comment that will not be rendered into your brew. */\n\n`
}
]
},