mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Flip sort order of sensing object menu in video motion extension. Resolves GH-1074
This commit is contained in:
parent
717ac46bbd
commit
ced4de8995
1 changed files with 5 additions and 5 deletions
|
@ -289,13 +289,13 @@ class Scratch3VideoSensingBlocks {
|
|||
*/
|
||||
get SUBJECT_INFO () {
|
||||
return [
|
||||
{
|
||||
name: 'stage',
|
||||
value: SensingSubject.STAGE
|
||||
},
|
||||
{
|
||||
name: 'sprite',
|
||||
value: SensingSubject.SPRITE
|
||||
},
|
||||
{
|
||||
name: 'stage',
|
||||
value: SensingSubject.STAGE
|
||||
}
|
||||
];
|
||||
}
|
||||
|
@ -366,7 +366,7 @@ class Scratch3VideoSensingBlocks {
|
|||
SUBJECT: {
|
||||
type: ArgumentType.NUMBER,
|
||||
menu: 'SUBJECT',
|
||||
defaultValue: SensingSubject.STAGE
|
||||
defaultValue: SensingSubject.SPRITE
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue