From 091cde69d47c65d10cebd8aecc14cefe7a4f9ad3 Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 20 Jul 2021 15:50:56 +0100 Subject: [PATCH] Slightly tweak find-all highlight colour. Refs #2277 --- qrenderdoc/Windows/ShaderViewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrenderdoc/Windows/ShaderViewer.cpp b/qrenderdoc/Windows/ShaderViewer.cpp index b2e9ff9bf..e37adfcfa 100644 --- a/qrenderdoc/Windows/ShaderViewer.cpp +++ b/qrenderdoc/Windows/ShaderViewer.cpp @@ -1197,7 +1197,7 @@ ScintillaEdit *ShaderViewer::MakeEditor(const QString &name, const QString &text ret->indicSetStyle(INDICATOR_REGHIGHLIGHT, INDIC_ROUNDBOX); // set up find result highlight style - ret->indicSetFore(INDICATOR_FINDRESULT, SCINTILLA_COLOUR(200, 200, 127)); + ret->indicSetFore(INDICATOR_FINDRESULT, SCINTILLA_COLOUR(200, 200, 64)); ret->indicSetStyle(INDICATOR_FINDRESULT, INDIC_FULLBOX); ret->indicSetAlpha(INDICATOR_FINDRESULT, 50); ret->indicSetOutlineAlpha(INDICATOR_FINDRESULT, 80);