Progress bar minsize now checks percent_visible

Allows for really thin progress bars such as for pixel-art styles.
This commit is contained in:
Zher Huei Lee 2016-03-31 12:58:07 +01:00
parent 8708a284f7
commit 0bba09c4cb

View file

@ -35,7 +35,9 @@ Size2 ProgressBar::get_minimum_size() const {
Ref<Font> font = get_font("font");
Size2 ms=bg->get_minimum_size()+bg->get_center_size();
ms.height=MAX(ms.height,bg->get_minimum_size().height+font->get_height());
if (percent_visible) {
ms.height=MAX(ms.height,bg->get_minimum_size().height+font->get_height());
}
return ms;
}