From 31e6578877da34db0c93d5bd9e7ca6408d988ee6 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Fri, 31 Dec 2021 05:27:36 -0500 Subject: [PATCH] Set minimum branch view height to be smaller so that scroll bar is less likely to be required and in view. --- src/drivers/Qt/TasEditor/branches.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/Qt/TasEditor/branches.cpp b/src/drivers/Qt/TasEditor/branches.cpp index ac46a05b..1606ceb9 100644 --- a/src/drivers/Qt/TasEditor/branches.cpp +++ b/src/drivers/Qt/TasEditor/branches.cpp @@ -132,7 +132,7 @@ void BRANCHES::calcFontData(void) pxGridWidth = pxMinGridWidth; w = pxMinGridWidth * 13; - h = pxMaxGridWidth * 10; + h = pxMinGridWidth * 10; if (w < BRANCHES_BITMAP_WIDTH ) w = BRANCHES_BITMAP_WIDTH; if (h < BRANCHES_BITMAP_HEIGHT) h = BRANCHES_BITMAP_HEIGHT;