From 844ec393f40232d44afba19944bc3b5d2dc2a821 Mon Sep 17 00:00:00 2001 From: Esteban Lorenzano Date: Wed, 10 Jun 2026 17:48:06 +0200 Subject: [PATCH] widths can not be fixed or they will be messes when including this in another box. fixes https://github.com/pharo-project/pharo/issues/19754 --- .../SpSearchInputFieldOptionsPresenter.class.st | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Spec2-Core/SpSearchInputFieldOptionsPresenter.class.st b/src/Spec2-Core/SpSearchInputFieldOptionsPresenter.class.st index d28f0c981..55219040f 100644 --- a/src/Spec2-Core/SpSearchInputFieldOptionsPresenter.class.st +++ b/src/Spec2-Core/SpSearchInputFieldOptionsPresenter.class.st @@ -42,10 +42,10 @@ SpSearchInputFieldOptionsPresenter >> defaultLayout [ ^ SpBoxLayout newLeftToRight spacing: 2; - add: substringOptionButton width: 95; - add: regexpOptionButton width: 70; - add: exactOptionButton width: 70; - add: caseCheckBox width: 70; + add: substringOptionButton; + add: regexpOptionButton; + add: exactOptionButton; + add: caseCheckBox; yourself ]