From ea49d7d845e1817de31762f30f4e3d6bbb354ee1 Mon Sep 17 00:00:00 2001 From: Sophia Pradhan Date: Mon, 25 Aug 2025 23:40:39 +0530 Subject: [PATCH] fixed issue #303 change menu colour from a default theme to a white theme no matter the system theme for better visibility --- Source/VCL/ClassBrowsing/CodeCompletion.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/VCL/ClassBrowsing/CodeCompletion.pas b/Source/VCL/ClassBrowsing/CodeCompletion.pas index ccb88b4e..294fbac7 100644 --- a/Source/VCL/ClassBrowsing/CodeCompletion.pas +++ b/Source/VCL/ClassBrowsing/CodeCompletion.pas @@ -118,7 +118,7 @@ constructor TCodeCompletion.Create(AOwner: TComponent); fWidth := 320; fHeight := 240; - fColor := clWindow; + fColor := clWhite; fEnabled := True; fOnlyGlobals := False; fShowCount := 100; // keep things fast @@ -425,3 +425,4 @@ function TCodeCompletion.IsVisible: boolean; end. +