From f923ca35cfa9dd13db531d920164492cf52b0a7c Mon Sep 17 00:00:00 2001 From: Kris <1611248+Rinzwind@users.noreply.github.com> Date: Fri, 5 May 2023 18:32:50 +0200 Subject: [PATCH] =?UTF-8?q?Fixed=20bug=20(issue=20#13663):=20enabling=20th?= =?UTF-8?q?e=20setting=20=E2=80=98Show=20lines=20numbers=20for=20all=20bro?= =?UTF-8?q?wsers=E2=80=99=20only=20showed=20line=20numbers=20for=20the=20f?= =?UTF-8?q?irst=20method=20selected=20in=20a=20class.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Calypso-Browser/ClyTextLineNumbersSwitchMorph.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Calypso-Browser/ClyTextLineNumbersSwitchMorph.class.st b/src/Calypso-Browser/ClyTextLineNumbersSwitchMorph.class.st index c4f78339f0a..8c951307f06 100644 --- a/src/Calypso-Browser/ClyTextLineNumbersSwitchMorph.class.st +++ b/src/Calypso-Browser/ClyTextLineNumbersSwitchMorph.class.st @@ -58,7 +58,7 @@ ClyTextLineNumbersSwitchMorph >> attachToTextMorph [ self updateLabel. self addMorph: label. self class showLineNumbers - ifTrue: [ self toggle ] + ifTrue: [ textMorph withLineNumbers ] ] { #category : #operations }