From ca04b2c924106d01b7a3ee2b8055da2c6626de88 Mon Sep 17 00:00:00 2001 From: Brendan Date: Wed, 17 Dec 2025 18:00:34 +0100 Subject: [PATCH] Fix regression due to Toplo modifcation --- src/Toplo-Serialization-Stash/BlElement.extension.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Toplo-Serialization-Stash/BlElement.extension.st b/src/Toplo-Serialization-Stash/BlElement.extension.st index c7961f3..7ac97c0 100644 --- a/src/Toplo-Serialization-Stash/BlElement.extension.st +++ b/src/Toplo-Serialization-Stash/BlElement.extension.st @@ -12,8 +12,8 @@ BlElement >> allSetterAndGettersForMyStashAllLocalTheme [ BlElement >> allSetterAndGettersForMyStashAllStamps [ - self allStamps isEmpty ifTrue: [ ^ { } ]. - ^ self toStyleStore stampIndex allProperties collect: [ :assoc | | setter getter | + self ensuredStampMap allPropertyNames isEmpty ifTrue: [ ^ { } ]. + ^ self ensuredStampMap allProperties collect: [ :assoc | | setter getter | setter := [ :element | 'addStamp: <1p> withValue:' expandMacrosWith: assoc value name ]. getter := [ :element | assoc value value ]. setter -> getter