From 473f36241a5024a25971fe68646cca659d3c72b0 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Wed, 17 May 2023 09:43:24 -0400 Subject: [PATCH] fix BUG: Minimum size of event Flags overrides a larger size. --- oscar/Graphs/gFlagsLine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/Graphs/gFlagsLine.cpp b/oscar/Graphs/gFlagsLine.cpp index 6cd50856..f3aab8a2 100644 --- a/oscar/Graphs/gFlagsLine.cpp +++ b/oscar/Graphs/gFlagsLine.cpp @@ -151,7 +151,7 @@ void gFlagsGroup::refreshConfiguration(gGraph* graph) int height (barHeight * numOn); height += sessionBarHeight(); setMinimumHeight (height); - graph->setHeight (height); + if (graph->height()setHeight (height); } int gFlagsGroup::sessionBarHeight() {