Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
First of all, thanks for the great framework!
I noticed that the version of the ImGui dependency is rather dated (April 2020) and incompatible with some awesome libraries like ImPlot (https://github.com/epezent/implot).
So, this PR updates the ImGui submodule from v1.76 to v1.86.
These are the "major" changes:
imgui/backends
instead ofimgui/examples
ImGuiCol_ModalWindowDarkening
was renamed toImGuiCol_ModalWindowDimBg
imgui_tables.cpp
power
argument toImGui::SliderFloat
/ImGui::DragFloat
has been replaced by a flags argument (see API breaking change in 1.78: Slider/Drag final "float power = 1.0f" arg becomes flags ocornut/imgui#3361). I replaced all appearances ofpower
> 1 with the flagsImGuiSliderFlags_Logarithmic | ImGuiSliderFlags_NoRoundToFormat
, which I think results in natural behavior for the logarithmic sliders. Feel free to double check.All tests are passing on my machine.