We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf8ea9 commit 44cd1bfCopy full SHA for 44cd1bf
1 file changed
src/Pyramid-Bloc/PyramidPositionExtension.class.st
@@ -39,7 +39,7 @@ PyramidPositionExtension >> installOn: aBuilder [
39
on: BlMouseMoveEvent
40
do: [ :evt |
41
"if the value is under 0.101 an display problem occured and the blue border of the workplace visually disapear"
42
- self scaleFactor <= 0.1 ifTrue: [ self scaleFactor: 0.10000000000000003 ].
+ self scaleFactor <= 0.1 ifTrue: [ self scaleFactor: 0.101 ].
43
position := (evt position - self currentTransformTranslation / self scaleFactor) rounded.
44
self display text: self position asRopedText ]).
45
self elementAtDisplaysAddons addChild: self display
0 commit comments