flamendless / Slab

An immediate mode GUI for the Love2D framework.
MIT License
289 stars 25 forks source link

Buttons and Scrollbar overlapping other Widgets #104

Open megagrump opened 2 years ago

megagrump commented 2 years ago

In the demo, some buttons are overlapping and hiding parts of the text in the Window. The scrollbar is overlapping the button of DropDown list.

image

flamendless commented 2 years ago

Thanks for reporting this. I'll look into this as soon as possible

megagrump commented 2 years ago

I have noticed that the behavior is not consistent between runs. Sometimes the text is behind the buttons, other times it's not.

flamendless commented 2 years ago

I have noticed that the behavior is not consistent between runs. Sometimes the text is behind the buttons, other times it's not.

Hmmm yes you are right. I cant reproduce this issue on my machine :thinking: weird.

In the screenshot above, it is weird that the text is not using the whole line when there is still a lot of space available

megagrump commented 2 years ago

If you add love.timer.sleep(.5) to love.draw in the demo, then resize the window, you can watch the text getting wrapped into place over many frames. That's pretty weird and may be the cause of the issue.

megagrump commented 2 years ago

Ooof my apologies, I accidently ran this on an older 11.4 in-development version that had a bug in its text wrapping/rendering code. That was also the reason why the text is so blurry in the screenshot. It's all good!

Scrollbar overlapping widgets and weird deferred text wrapping is still happening though.

flamendless commented 2 years ago

The scrollbar behavior is the same as with dearimgui so i think that is okay 🤔 i dont see any issue about that in dearimgui too

megagrump commented 2 years ago

Let's look at this from the usability angle: suppose you have a small widget that is completely obstructed by the scrollbar. You can't click it. Is this a bug or not?

I can't speak to DearIMGUI's bugs, but emulating them seems like a questionable design goal.

flamendless commented 2 years ago

Hmm indeed. Slab doesnt have to follow every dearimgui design so yeah we can fix that scrollbar issue but i have some concerns:

Anyway these are just what i can think of right now and im probably thinking wrong about the possible cases