Flip sort order of sensing object menu in video motion extension. Resolves GH-1074

This commit is contained in:
Andrew Sliwinski 2018-04-23 13:00:20 -04:00
parent 717ac46bbd
commit ced4de8995

View file

@ -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
}
}
},