Custom style child windows are scrollable on HiDPI screens #30
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: williamjcm/MassBuilderSaveTool#30
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Good ol' hardcoded values.
I'll have to make a pass over the whole UI and remove as many of those as possible, or at least make them scale with the DPI scaling factor too.
Been trying to solve this issue, and it looks like doing a dumb
hardcoded_value * dpiScaling().axis()
isn't the right way of going about it, especially since I use a lot of ImGui child windows with menu bars and those count in the size calculation.Ah, if only child windows didn't try to take the rest of the free space in their parent...
Might have to use tables in some places, to be honest.
I was approaching the problem in the wrong way, and also fixed all other UI elements that had issues on HiDPI screens. I hope.