Skip to content

Commit 44cd1bf

Browse files
committed
Change of the value if < 0.1
1 parent 8cf8ea9 commit 44cd1bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Pyramid-Bloc/PyramidPositionExtension.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ PyramidPositionExtension >> installOn: aBuilder [
3939
on: BlMouseMoveEvent
4040
do: [ :evt |
4141
"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 ].
42+
self scaleFactor <= 0.1 ifTrue: [ self scaleFactor: 0.101 ].
4343
position := (evt position - self currentTransformTranslation / self scaleFactor) rounded.
4444
self display text: self position asRopedText ]).
4545
self elementAtDisplaysAddons addChild: self display

0 commit comments

Comments
 (0)