fix BUG: Minimum size of event Flags overrides a larger size.

This commit is contained in:
LoudSnorer 2023-05-17 09:43:24 -04:00
parent 7a2c35b8a9
commit 473f36241a

View File

@ -151,7 +151,7 @@ void gFlagsGroup::refreshConfiguration(gGraph* graph)
int height (barHeight * numOn);
height += sessionBarHeight();
setMinimumHeight (height);
graph->setHeight (height);
if (graph->height()<height) graph->setHeight (height);
}
int gFlagsGroup::sessionBarHeight() {