From a1bd1c19e3fbd7fe8f7cb20fd532e6d7596add89 Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Thu, 5 Aug 2021 23:30:07 -0400 Subject: [PATCH] [visual] Make thin pen a bit thicker --- src/core/control/ToolHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/control/ToolHandler.cpp b/src/core/control/ToolHandler.cpp index 92a01823..a4b4579f 100644 --- a/src/core/control/ToolHandler.cpp +++ b/src/core/control/ToolHandler.cpp @@ -24,9 +24,9 @@ ToolHandler::ToolHandler(ToolListener* stateChangeListener, ActionHandler* actio void ToolHandler::initTools() { std::array thickness; - // pen thicknesses = 0.15, 0.3, 0.5, 0.8, 2 mm + // pen thicknesses = 0.15, 0.38, 0.5, 0.8, 2 mm thickness[TOOL_SIZE_VERY_FINE] = 0.42; - thickness[TOOL_SIZE_FINE] = 0.85; + thickness[TOOL_SIZE_FINE] = 1.064; thickness[TOOL_SIZE_MEDIUM] = 1.41; thickness[TOOL_SIZE_THICK] = 2.26; thickness[TOOL_SIZE_VERY_THICK] = 5.67;