ObjectProfile / Roassal3

The Roassal Visualization Engine
MIT License
95 stars 52 forks source link

Roassal3: Problem with RSForceBasedLayout #611

Open labradorpeter opened 3 months ago

labradorpeter commented 3 months ago

When trying RSForceBasedLayout an exception happened. The initialLayout is RSGridLayout. The method doExecute: asks for 'horizontalGap', but that's nil. So here is my patch:

"hgap := self horizontalGap.
vgap := self verticalGap."
hgap := 5.
vgap := 5.

Should be done better.