From 40ef559859cbc32085288e13b53adc8391b8ca99 Mon Sep 17 00:00:00 2001 From: Sean DeNigris Date: Tue, 10 Sep 2024 20:45:05 -0400 Subject: [PATCH] [Enh]: GT Form Tokens should Flow Before, if there were many multiple options or to-many relation items, they would often run off the screen and get clipped. After, they flow down to stay within the container horizontally --- source/Magritte-GToolkit/MATokenSelectorElement.class.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Magritte-GToolkit/MATokenSelectorElement.class.st b/source/Magritte-GToolkit/MATokenSelectorElement.class.st index 1d8aed44..b3878cdd 100644 --- a/source/Magritte-GToolkit/MATokenSelectorElement.class.st +++ b/source/Magritte-GToolkit/MATokenSelectorElement.class.st @@ -110,8 +110,8 @@ MATokenSelectorElement >> relationDescription: anObject [ MATokenSelectorElement >> tokenContainer [ tokenContainer ifNotNil: [ ^ tokenContainer ]. - ^ tokenContainer := BrHorizontalPane new + ^ tokenContainer := BrHorizontalFlow new vFitContent; - hFitContent; + hMatchParent; yourself ]