mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Merge pull request #1857 from ericrosenbaum/bugfix/makey-key-menu-order
For order of Makey Makey extension's key pressed menu
This commit is contained in:
commit
cf5e07a42e
1 changed files with 16 additions and 16 deletions
|
@ -210,19 +210,11 @@ class Scratch3MakeyMakeyBlocks {
|
|||
},
|
||||
{
|
||||
text: formatMessage({
|
||||
id: 'makeymakey.leftArrow',
|
||||
default: 'left arrow',
|
||||
description: 'The left arrow key on a computer keyboard.'
|
||||
id: 'makeymakey.upArrow',
|
||||
default: 'up arrow',
|
||||
description: 'The up arrow key on a computer keyboard.'
|
||||
}),
|
||||
value: KEY_ID_LEFT
|
||||
},
|
||||
{
|
||||
text: formatMessage({
|
||||
id: 'makeymakey.rightArrow',
|
||||
default: 'right arrow',
|
||||
description: 'The right arrow key on a computer keyboard.'
|
||||
}),
|
||||
value: KEY_ID_RIGHT
|
||||
value: KEY_ID_UP
|
||||
},
|
||||
{
|
||||
text: formatMessage({
|
||||
|
@ -234,11 +226,19 @@ class Scratch3MakeyMakeyBlocks {
|
|||
},
|
||||
{
|
||||
text: formatMessage({
|
||||
id: 'makeymakey.upArrow',
|
||||
default: 'up arrow',
|
||||
description: 'The up arrow key on a computer keyboard.'
|
||||
id: 'makeymakey.rightArrow',
|
||||
default: 'right arrow',
|
||||
description: 'The right arrow key on a computer keyboard.'
|
||||
}),
|
||||
value: KEY_ID_UP
|
||||
value: KEY_ID_RIGHT
|
||||
},
|
||||
{
|
||||
text: formatMessage({
|
||||
id: 'makeymakey.leftArrow',
|
||||
default: 'left arrow',
|
||||
description: 'The left arrow key on a computer keyboard.'
|
||||
}),
|
||||
value: KEY_ID_LEFT
|
||||
},
|
||||
{text: 'w', value: 'w'},
|
||||
{text: 'a', value: 'a'},
|
||||
|
|
Loading…
Reference in a new issue