Set shortcut "Set duration: quaver (eighth note)" to <8> doesn't work

• Dec 13, 2023 - 08:31

I set the shortcut "Set duration: quaver (eighth note)" to <8>, but it doesn't work mit NumPad+8. With 8 it works. The other shortcuts "Set duration" works with NumPad-Numbers. Only 8 doesn't work. How can i fix it? Is it a bug?


Comments

That's in the shortcuts.xml

    pad-note-2
    2


    pad-note-8
    8

The shortcut "2" works at the normal key and at the num-pad. The "8" only works at the normal key und doesn't work at the num-pad.

In reply to by tomduly

You'd most probably need

    <SC>
        <key>pad-note-8</key>
        <seq>8</seq>
        <seq>Num+8</seq>
    </SC>

and may need to get rid of

    <SC>
        <key>note-breve</key>
        <seq>8</seq>
        <seq>Num+8</seq>
    </SC>
 

and/or

    <SC>
        <key>fret-8</key>
        <seq>8</seq>
        <seq>J</seq>
    </SC>
 

And probably also want

    <SC>
        <key>pad-note-2</key>
        <seq>2</seq>
        <seq>Num+2</seq>
    </SC>

Do you still have an unanswered question? Please log in first to post your question.