From 268d4a310fa5f0908db7ff0a22279e6b4d79425f Mon Sep 17 00:00:00 2001 From: tarman3 Date: Sun, 26 Oct 2025 09:08:27 +0200 Subject: [PATCH] CAM: Inspect - decrease default Max Highlighter Size --- src/Mod/CAM/Path/Main/Gui/Inspect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/CAM/Path/Main/Gui/Inspect.py b/src/Mod/CAM/Path/Main/Gui/Inspect.py index 6872e80d2d..6f7e195987 100644 --- a/src/Mod/CAM/Path/Main/Gui/Inspect.py +++ b/src/Mod/CAM/Path/Main/Gui/Inspect.py @@ -214,8 +214,8 @@ def show(obj): "show(obj): shows the G-code data of the given Path object in a dialog" prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/CAM") - # default Max Highlighter Size = 512 Ko - defaultMHS = 512 * 1024 + # default Max Highlighter Size = 256 Ko + defaultMHS = 256 * 1024 mhs = prefs.GetUnsigned("inspecteditorMaxHighlighterSize", defaultMHS) if hasattr(obj, "Path"):