From 24f67f2d87ac07c8ac25446693ffe84f7ea625dd Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Fri, 20 Sep 2024 09:17:12 -0500 Subject: [PATCH] GUI: Fix mistake in cherry-picking The cherry-pick lost the deletion of a line of code. --- src/Gui/Widgets.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Gui/Widgets.cpp b/src/Gui/Widgets.cpp index 77c8c5ec7a..e3b618a0c6 100644 --- a/src/Gui/Widgets.cpp +++ b/src/Gui/Widgets.cpp @@ -1360,7 +1360,6 @@ void PropertyListEditor::highlightCurrentLine() selection.format.setBackground(palette.highlight().color()); selection.format.setForeground(palette.highlightedText().color()); - selection.format.setBackground(lineColor); selection.format.setProperty(QTextFormat::FullWidthSelection, true); selection.cursor = textCursor(); selection.cursor.clearSelection();