ImRect: Removed misleading IsFinite() function used by some Nav code.

This commit is contained in:
omar
2018-02-26 13:10:34 +01:00
parent 5427eca960
commit c7835dd189
2 changed files with 2 additions and 3 deletions

View File

@ -341,7 +341,6 @@ struct IMGUI_API ImRect
void Floor() { Min.x = (float)(int)Min.x; Min.y = (float)(int)Min.y; Max.x = (float)(int)Max.x; Max.y = (float)(int)Max.y; }
void FixInverted() { if (Min.x > Max.x) ImSwap(Min.x, Max.x); if (Min.y > Max.y) ImSwap(Min.y, Max.y); }
bool IsInverted() const { return Min.x > Max.x || Min.y > Max.y; }
bool IsFinite() const { return Min.x != FLT_MAX; }
};
// Stacked color modifier, backup of modified data so we can restore it