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 ce265d2 commit 8cf8ea9Copy full SHA for 8cf8ea9
1 file changed
src/Pyramid-Bloc/PyramidPositionExtension.class.st
@@ -38,6 +38,7 @@ PyramidPositionExtension >> installOn: aBuilder [
38
self elementAtEvents addEventHandler: (BlEventHandler
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 ].
43
position := (evt position - self currentTransformTranslation / self scaleFactor) rounded.
44
self display text: self position asRopedText ]).
0 commit comments