Il giorno lun 23 giu 2025 alle 12:31:48 +02:00:00, Hans Aikema
<[email protected]> ha scritto:
Going by the code comments the layout in 2 columns is just a
coincidence of your screen-width and raster layout is supposed to
dynamically manage the number of columns in the grid based on the
width of the viewing area, so on an infinitely wide monitor you'd have
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
and on a slighty more realistic ultrawide monitor you might get
something like
1 | 4 | 7
2 | 5 | 8
3 | 6
due to the wider viewing area
and on a small viewing area you'd get
1
2
3
4
5
6
7
8
whereas the two pages layouts would always contain fixed number of
columns (2) and would scale the pages to fill the available width.
You are right, thanks!
Then the name candidates might be:
Dynamic layout
Responsive layout
and a tooltip should describe it better.
I'm testing it now and it seems quite buggy. Probably nobody uses it,
but the reason may be that it's not clear what it does.