diff options
Diffstat (limited to 'src/Editor.cxx')
| -rw-r--r-- | src/Editor.cxx | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/src/Editor.cxx b/src/Editor.cxx index b0560e758..2e8654ca4 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -8212,6 +8212,16 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {  	case SCI_INDICGETALPHA:  		return (wParam <= INDIC_MAX) ? vs.indicators[wParam].fillAlpha : 0; +	case SCI_INDICSETOUTLINEALPHA: +		if (wParam <= INDIC_MAX && lParam >=0 && lParam <= 255) { +			vs.indicators[wParam].outlineAlpha = lParam; +			InvalidateStyleRedraw(); +		} +		break; + +	case SCI_INDICGETOUTLINEALPHA: +		return (wParam <= INDIC_MAX) ? vs.indicators[wParam].outlineAlpha : 0; +  	case SCI_SETINDICATORCURRENT:  		pdoc->decorations.SetCurrentIndicator(wParam);  		break; | 
