Update ImGui submodule (#2779)

* update imgui submodule

* fix imgui breaking changes

* update ffmpeg-core submodule
This commit is contained in:
Vinicius Rangel 2025-04-13 13:27:20 -03:00 committed by GitHub
parent 6c2574364b
commit aec6e330dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 29 additions and 38 deletions

View file

@ -50,14 +50,14 @@ inline void KeepWindowInside(ImVec2 display_size = GetIO().DisplaySize) {
}
inline void KeepNavHighlight() {
GetCurrentContext()->NavDisableHighlight = false;
GetCurrentContext()->NavCursorVisible = true;
}
inline void SetItemCurrentNavFocus(const ImGuiID id = -1) {
const auto ctx = GetCurrentContext();
SetFocusID(id == -1 ? ctx->LastItemData.ID : id, ctx->CurrentWindow);
ctx->NavInitResult.Clear();
ctx->NavDisableHighlight = false;
ctx->NavCursorVisible = true;
}
inline void DrawPrettyBackground() {