See title^ —————- ignore these extra characters I have to type cuz of this annoying forum software
I don’t know where to start with this one.
I understand that cards can be resized when dragging the bottom-right corner. Does that mean that the page size should grow horizontally to the right? What is the page size here? The size of a Kinopio space or the literal browser page?
The page size is dynamically defined in updatePageSizes
in store.js
, it’s either the viewport (the natural page size) or the based on the size of the combined cards and boxes (aka items
) in the space (+ some padding).
I believe the way it works is you just call store.dispatch('updatePageSizes')
whenever you want the page size to be recalculated.
so the root cause for this is that when the card (and/or box) resize is ended, updatePageSizes
isn’t being called. Ensuring that it’s called should hopefully fix this