From a0db11f68ba3afee7328ca5022d3af301d4821d4 Mon Sep 17 00:00:00 2001 From: Juraj Kubelka Date: Tue, 22 Oct 2024 09:36:46 -0300 Subject: [PATCH] fix examples [feenkcom/gtoolkit#3983] --- .../GtCoderSlideshow.class.st | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/GToolkit-Demo-MoldableDevelopment/GtCoderSlideshow.class.st b/src/GToolkit-Demo-MoldableDevelopment/GtCoderSlideshow.class.st index 9f942351..d4a97d5c 100644 --- a/src/GToolkit-Demo-MoldableDevelopment/GtCoderSlideshow.class.st +++ b/src/GToolkit-Demo-MoldableDevelopment/GtCoderSlideshow.class.st @@ -645,8 +645,11 @@ GtCoderSlideshow >> ensureOldFilterWidgetsDuring: aBlock [ | aStencilClass | aStencilClass := GtPharoStreamingMethodsFiltersElementStencil defaultStencilClassOrNil. - ^ aBlock - ensure: [ GtPharoStreamingMethodsFiltersElementStencil + ^ [ + GtPharoStreamingMethodsFiltersElementStencil beDescriptorsStencilDefault. + aBlock value ] + ensure: [ + GtPharoStreamingMethodsFiltersElementStencil defaultStencilClass: aStencilClass ] ]