1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +00:00

Scrollbar, Style: added style.ScrollbarPadding, ImGuiStyleVar_ScrollbarPadding. (#8895)

This commit is contained in:
ocornut 2025-08-20 18:27:35 +02:00
parent 89b7fc906a
commit 42656b3aa1
5 changed files with 14 additions and 3 deletions

View file

@ -43,6 +43,8 @@ Breaking Changes:
Other Changes:
- Scrollbar, Style: added configurable style.ScrollbarPadding value and corresponding
ImGuiStyleVar_ScrollbarPadding enum, instead of hardcoded computed default. (#8895)
- DrawList: Fixed CloneOutput() unnecessarily taking a copy of the ImDrawListSharedData
pointer, which could to issue when deleting the cloned list. (#8894, #1860)
- Examples: Android: Android+OpenGL3: update Gradle project (#8888, #8878) [@scribam]