From 614829f1bda7724661b008741a6fecca56c56aba Mon Sep 17 00:00:00 2001 From: Esteban Lorenzano Date: Tue, 9 May 2023 11:49:01 +0200 Subject: [PATCH] default of this has to be false --- src/NewTools-Spotter/StSpotter.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NewTools-Spotter/StSpotter.class.st b/src/NewTools-Spotter/StSpotter.class.st index a976924b3..bf4fd39ed 100644 --- a/src/NewTools-Spotter/StSpotter.class.st +++ b/src/NewTools-Spotter/StSpotter.class.st @@ -114,7 +114,7 @@ StSpotter class >> initialize [ { #category : #settings } StSpotter class >> insertsSelection [ - ^ InsertsSelection ifNil: [ InsertsSelection := true ] + ^ InsertsSelection ifNil: [ InsertsSelection := false ] ] { #category : #settings }