1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

TabBar: fixed calling TabBarQueueFocus() before submitting tabs. (#8929, #6681)

This commit is contained in:
ocornut 2025-09-10 18:03:34 +02:00
parent 4e98fb20e2
commit 1cd08b883c
3 changed files with 5 additions and 2 deletions

View file

@ -71,6 +71,8 @@ Other Changes:
unmoved. We revert back to move to the end of line in this situation.
- Selectable: added ImGuiSelectableFlags_SelectOnNav to auto-select an item when
moved into (automatic when in a BeginMultiSelect() block).
- TabBar: fixed an issue were forcefully selecting a tab using internal API would
be ignored on first/appearing frame before tabs are submitted (#8929, #6681)
- DrawList: fixed CloneOutput() unnecessarily taking a copy of the ImDrawListSharedData
pointer, which could to issue when deleting the cloned list. (#8894, #1860)
- DrawList: made AddCallback() assert when passing a null callback.