Browse Source

Fix clickable link bad display regression

Fix #12219, close #12238
pull/12257/head
Don Ho 2 years ago
parent
commit
e3a5f76af0
  1. 2
      scintilla/src/EditView.cxx

2
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 {

Loading…
Cancel
Save