postprintum/devcomrade

startup fails because of already used shortcut

Closed this issue · 2 comments

When I build and run devcomrade, I get the error that the shortcut for "OpenNotepad" is already registered.
I didn't find a config value to change it to something else.

It's here in App.config:

    <hotkey name="OpenNotepad" menuItem="Open Internal Notepad" mods="0x8" vkey="0xDC" />

It's Win+| by default, looks like this combo may be taken by some other app on your system. Try changing it to some other combination, or just comment out this line to test:

<!--     <hotkey name="OpenNotepad" menuItem="Open Internal Notepad" mods="0x8" vkey="0xDC" /> -->

ah, thx, just checked those json configs in the publish folder
works when I comment it out 👍