From 87034a0a675f04073df6810f61bab8df84d6e89d Mon Sep 17 00:00:00 2001 From: James Crook Date: Mon, 24 Feb 2020 19:24:52 +0000 Subject: [PATCH] Bug 2298 - Windows: Font size reduced for Vertical Scale, Timeline and Time Track numbers --- src/widgets/Ruler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp index 59cbf701d..408b1cd46 100644 --- a/src/widgets/Ruler.cpp +++ b/src/widgets/Ruler.cpp @@ -997,12 +997,12 @@ double SolveWarpedLength(const Envelope &env, double t0, double length) } } -static constexpr int MinPixelHeight = 10; // 8; +static constexpr int MinPixelHeight = 12; static constexpr int MaxPixelHeight = #ifdef __WXMAC__ - 10 -#else 12 +#else + 14 #endif ;