mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
Merge branch 'master' of https://github.com/SimDietrich/imgui
This commit is contained in:
commit
a541bffef0
1 changed files with 2 additions and 2 deletions
|
@ -3356,8 +3356,8 @@ bool RadioButton(const char* label, bool active)
|
|||
return false;
|
||||
|
||||
ImVec2 center = check_bb.GetCenter();
|
||||
center.x = (float)(int)center.x + 0.5f;
|
||||
center.y = (float)(int)center.y + 0.5f;
|
||||
center.x = (float)(int)center.x + style.PixelCenterOffset;
|
||||
center.y = (float)(int)center.y + style.PixelCenterOffset;
|
||||
const float radius = check_bb.GetHeight() * 0.5f;
|
||||
|
||||
const bool hovered = (g.HoveredWindow == window) && (g.HoveredId == 0) && IsMouseHoveringBox(check_bb);
|
||||
|
|
Loading…
Add table
Reference in a new issue