Changed GuiWindowBox() minimum height

This commit is contained in:
Ray
2018-04-18 13:50:22 +02:00
parent 4202d5e26d
commit fbb11c9bf5

View File

@ -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;
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
//--------------------------------------------------------------------