From e3a5f76af0ba15c64f95955a6b24d2e5431e024a Mon Sep 17 00:00:00 2001 From: Don Ho Date: Sun, 25 Sep 2022 03:20:24 +0200 Subject: [PATCH] Fix clickable link bad display regression Fix #12219, close #12238 --- scintilla/src/EditView.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scintilla/src/EditView.cxx b/scintilla/src/EditView.cxx index a7b98e233..90ac7a514 100644 --- a/scintilla/src/EditView.cxx +++ b/scintilla/src/EditView.cxx @@ -2136,7 +2136,7 @@ void EditView::DrawForeground(Surface *surface, const EditModel &model, const Vi hover = rangeRun.ContainsCharacter(model.hoverIndicatorPos); } if (hover) { - if (indicator.sacHover.style == IndicatorStyle::TextFore) { + if (indicator.sacHover.style == IndicatorStyle::TextFore || (indicator.sacHover.style == IndicatorStyle::ExplorerLink)) { textFore = indicator.sacHover.fore; } } else {