From a2c091dce1bda5e7799c2eff8a8ef0c80c0af1a6 Mon Sep 17 00:00:00 2001 From: Esteban Lorenzano Date: Mon, 28 Oct 2024 11:17:07 +0100 Subject: [PATCH] fixes https://github.com/pharo-project/pharo/issues/17316 --- .../DebugPointTablePresenter.class.st | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/NewTools-DebugPointsBrowser/DebugPointTablePresenter.class.st b/src/NewTools-DebugPointsBrowser/DebugPointTablePresenter.class.st index 44aea404..6815ece5 100644 --- a/src/NewTools-DebugPointsBrowser/DebugPointTablePresenter.class.st +++ b/src/NewTools-DebugPointsBrowser/DebugPointTablePresenter.class.st @@ -46,6 +46,13 @@ DebugPointTablePresenter >> debugPointActions [ action: [ self refresh ] ] ] ] +{ #category : 'initialization' } +DebugPointTablePresenter >> initialize [ + + super initialize. + self initializeDebugPointTable +] + { #category : 'initialization' } DebugPointTablePresenter >> initializeDebugPointTable [ @@ -92,9 +99,3 @@ DebugPointTablePresenter >> initializeDebugPointTable [ ((self itemAt: item row) getBehavior: ChainBehavior) putChild: item passenger first ] ] - -{ #category : 'initialization' } -DebugPointTablePresenter >> initializePresenters [ - - self initializeDebugPointTable -]