ggerganov / imtui

ImTui: Immediate Mode Text-based User Interface C++ Library
https://imtui.ggerganov.com
MIT License
3.04k stars 127 forks source link

Breaking changes (imgui 1.79) #13

Closed luxe closed 3 years ago

luxe commented 4 years ago

When imgui moves to 1.79 ImFont::DisplayOffset will be deprecated in favor of ImFontConfig::GlyphOffset https://github.com/ocornut/imgui/commit/c206a193737811193a0b48ef2d35fe028fa0996e

We will need to fix this:

external/imtui/examples/imtui-demo.cpp:3346:61: error: no member named 'DisplayOffset' in 'ImFont'
                    ImGui::InputFloat("Font offset", &font->DisplayOffset.y, 1, 1, "%.0f");

I just removed the line as they did in the commit (currently testing with imtui with latest imgui)

ggerganov commented 4 years ago

The v1.79 branch is compatible with ImGui 1.79. You can give it a try

ggerganov commented 3 years ago

Merged in master