File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -694,9 +694,7 @@ const styles = `
694
694
}
695
695
696
696
.blocklyAngleCircle {
697
- stroke: var(--colour-motion-tertiary);
698
697
stroke-width: 1;
699
- fill: var(--colour-motion-secondary);
700
698
}
701
699
702
700
.blocklyAngleCenterPoint {
Original file line number Diff line number Diff line change @@ -158,6 +158,8 @@ class FieldAngle extends Blockly.FieldNumber {
158
158
cx : this . HALF ,
159
159
cy : this . HALF ,
160
160
r : this . RADIUS ,
161
+ fill : this . getSourceBlock ( ) . getParent ( ) . getColourSecondary ( ) ,
162
+ stroke : this . getSourceBlock ( ) . getParent ( ) . getColourTertiary ( ) ,
161
163
class : "blocklyAngleCircle" ,
162
164
} ,
163
165
svg
@@ -248,7 +250,7 @@ class FieldAngle extends Blockly.FieldNumber {
248
250
249
251
Blockly . DropDownDiv . setColour (
250
252
this . getSourceBlock ( ) . getParent ( ) . getColour ( ) ,
251
- this . getSourceBlock ( ) . getColourTertiary ( )
253
+ this . getSourceBlock ( ) . getParent ( ) . getColourTertiary ( )
252
254
) ;
253
255
Blockly . DropDownDiv . showPositionedByBlock ( this , this . getSourceBlock ( ) ) ;
254
256
You can’t perform that action at this time.
0 commit comments