mark.warren
2018-12-7 11:39:51

Does anyone know if there is a true grid layout panel in racket/gui? I understand I can nest horizontal and vertical panels, but that get’s tedious and difficult to align.


githree
2018-12-7 12:27:00

mark.warren
2018-12-7 12:27:33

@githree Thanks I’ll have a look.


mark.warren
2018-12-7 12:29:11

@githree Looks just right, thanks.


spdegabrielle
2018-12-7 20:24:49

@githree /table-panel has a failing test - I haven’t looked at it in a long time.


spdegabrielle
2018-12-7 20:25:59

@mark.warren @githree The documentation describes set-dimensions as taking n-rows, then n-cols, but the code actually expects n-cols, then n-rows.

The documented order is consistent with other usages. Unfortunately, fixing the code to match the documentation will be a breaking change.


spdegabrielle
2018-12-7 20:26:10

apart from that I think it works