From f8093de71ce4498c42d0d5a509d76524c4ed16b3 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 16 Mar 2020 00:12:07 +0100 Subject: [PATCH] Gui: [skip ci] slightly change the background color of the search field --- src/Gui/DlgParameterImp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/DlgParameterImp.cpp b/src/Gui/DlgParameterImp.cpp index 22a002946f..a5132c11b8 100644 --- a/src/Gui/DlgParameterImp.cpp +++ b/src/Gui/DlgParameterImp.cpp @@ -210,7 +210,7 @@ void DlgParameterImp::on_findGroupLE_textChanged(const QString &SearchStr) // Set red background to indicate no matching QString styleSheet = QString::fromLatin1( " QLineEdit {\n" - " background-color: rgb(255,170,255);\n" + " background-color: rgb(221,144,161);\n" " }\n" ); ui->findGroupLE->setStyleSheet(styleSheet);