From 057284c42bc8691b1768140daee72a7d24410867 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Wed, 24 May 2023 09:53:57 +0300 Subject: [PATCH] osx: disable menu icons --- src/editor/Editor.lpr | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/editor/Editor.lpr b/src/editor/Editor.lpr index 2e55853..95692d9 100644 --- a/src/editor/Editor.lpr +++ b/src/editor/Editor.lpr @@ -228,6 +228,10 @@ begin Application.ExceptionDialog := aedOkMessageBox; Application.AddOnExceptionHandler(THandlerObject.ExceptionHandler, True); Application.Initialize(); + {$IFDEF DARWIN} + // Disable icons in menu on OSX by default + Application.ShowMenuGlyphs := sbgNever; + {$ENDIF} InitPathes; CheckParamOptions; -- 2.29.2