Clipper: Fixed a bug if attempt to force-include a range which matches an already included range. (#3841)

This commit is contained in:
ocornut
2023-08-31 21:39:27 +02:00
parent bdd9b96fa3
commit a066074054
3 changed files with 6 additions and 2 deletions

View File

@ -61,6 +61,8 @@ Other changes:
- ColorEdit, ColorPicker: Manipulating options popup don't mark item as edited. (#6722)
(Note that they may still be marked as Active/Hovered.)
- Clipper: Added IncludeItemByIndex() helper to include a single item. (#6424, #3841)
- Clipper: Fixed a bug if attempt to force-include a range which matches an already
included range, clipper would end earlier. (#3841)
- ImDrawData: Fixed an issue where TotalVtxCount/TotalIdxCount does not match the sum
of individual ImDrawList's buffer sizes when a dimming/modal background is rendered. (#6716)
- ImDrawList: Automatically calling ChannelsMerge() if not done after a split.