mirror of
https://github.com/raysan5/raygui.git
synced 2026-01-22 15:19:18 -05:00
Changed GuiWindowBox() minimum height
This commit is contained in:
@ -916,7 +916,7 @@ RAYGUIDEF bool GuiWindowBox(Rectangle bounds, const char *text)
|
|||||||
|
|
||||||
if (bounds.width < textWidth + offsetX*2 + 16) bounds.width = textWidth + offsetX*2 + 16;
|
if (bounds.width < textWidth + offsetX*2 + 16) bounds.width = textWidth + offsetX*2 + 16;
|
||||||
Rectangle statusBar = { bounds.x, bounds.y, bounds.width, 24 };
|
Rectangle statusBar = { bounds.x, bounds.y, bounds.width, 24 };
|
||||||
if (bounds.height < 48) bounds.height = 48;
|
if (bounds.height < 50) bounds.height = 50;
|
||||||
|
|
||||||
// Update control
|
// Update control
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user