diff --git a/imgui_draw.cpp b/imgui_draw.cpp index 30506db5f..3ff8af1d5 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -602,7 +602,10 @@ void ImDrawList::_OnChangedTextureID() AddDrawCmd(); return; } - IM_ASSERT(curr_cmd->UserCallback == NULL); + + // Unlike other _OnChangedXXX functions this may be called by ImFontAtlasUpdateDrawListsTextures() in more locations so we need to handle this case. + if (curr_cmd->UserCallback != NULL) + return; // Try to merge with previous command if it matches, else use current command ImDrawCmd* prev_cmd = curr_cmd - 1;