mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-29 03:00:05 +00:00
Merge pull request #250 from benvanik/patch-1
Fixing 64-bit compilation warning caused by implicit size_t->int cast
This commit is contained in:
commit
14f189b2f6
1 changed files with 1 additions and 1 deletions
|
|
@ -3192,7 +3192,7 @@ static void ClosePopup(ImGuiID id)
|
|||
if (!IsPopupOpen(id))
|
||||
return;
|
||||
ImGuiState& g = *GImGui;
|
||||
ClosePopupToLevel(g.OpenedPopupStack.size() - 1);
|
||||
ClosePopupToLevel((int)g.OpenedPopupStack.size() - 1);
|
||||
}
|
||||
|
||||
// Close the popup we have begin-ed into.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue