Drags, Sliders, Inputs: removed all attempts to filter non-numerical characters during text editing. (#6810, #7096)

This commit is contained in:
ocornut
2023-12-22 19:51:49 +01:00
parent f039e69b9c
commit 4a2426449a
2 changed files with 3 additions and 15 deletions

View File

@ -70,6 +70,8 @@ Other changes:
- InputTextMultiline: Tabbing through a multi-line text editor which allows Tab character inputs
(using the ImGuiInputTextFlags_AllowTabInput flag) doesn't automatically activate it, in order
to allow passing through multiple widgets easily. (#3092, #5759, #787)
- Drags, Sliders, Inputs: removed all attempts to filter non-numerical characters during text
editing. Invalid inputs not applied to value, visibly reverted after validation. (#6810, #7096)
- DragScalarN, SliderScalarN, InputScalarN, PushMultiItemsWidths: improve multi-components
width computation to better distribute the error. (#7120, #7121) [@Nahor]
- ColorEdit4: Layout tweaks for very small sizes. (#7120, #7121)