From fbb11c9bf57e2a61dd7ab0ba7d5fe6b88cd64086 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 18 Apr 2018 13:50:22 +0200 Subject: [PATCH] Changed GuiWindowBox() minimum height --- src/raygui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raygui.h b/src/raygui.h index 6dbbd59..df98fbd 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -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 //--------------------------------------------------------------------