From ce32bdf1c82f44155b8dfb650820b126c31b38e1 Mon Sep 17 00:00:00 2001 From: "Dmitry D. Chernov" Date: Thu, 1 Feb 2024 23:21:39 +1000 Subject: [PATCH] IDE: Fix saving the specified frame priority for user-defined markup (cherry picked from commit 720d3c66beb9976a5fec9af43d9bc8bff3469a4b) --- ide/syncolorattribeditor.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/syncolorattribeditor.pas b/ide/syncolorattribeditor.pas index c3b96272bd..8ae96ab297 100644 --- a/ide/syncolorattribeditor.pas +++ b/ide/syncolorattribeditor.pas @@ -231,7 +231,7 @@ begin FCurHighlightElement.ForePriority := v; if Sender = BackPriorSpin then FCurHighlightElement.BackPriority := v; - if Sender = FramePriorLabel then + if Sender = FramePriorSpin then FCurHighlightElement.FramePriority := v; DoChanged;