Hi, I’m currently working on a widget to display different blocks of information. The player can choose which blocks he wants to see by using toggles. Right now I have a vertical box with one text block for each block of info, and the text of each block is binded to a C++ function. The problem is that I want all the selected blocks to be displayed together, but each non selected block takes up a blank space in the panel.
If this is the info to show:
This is how it looks now:
This is the how I want it to look:
So what I would like to achieve is that empty text blocks don’t take up any space in my panel. I need to keep the text blocks because they are C++ properties binded to the widget, but I can change the panel or add other elements, I just need the information to be displayed as a list and with the format I mentioned.