diff options
Diffstat (limited to 'src/Editor.cxx')
| -rw-r--r-- | src/Editor.cxx | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/src/Editor.cxx b/src/Editor.cxx index ee4d3947f..0e686e101 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6884,6 +6884,19 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {  		else  			return 0; +	case SCI_SETMARGINBACKN: +		if (ValidMargin(wParam)) { +			vs.ms[wParam].back = ColourDesired(static_cast<long>(lParam)); +			InvalidateStyleRedraw(); +		} +		break; + +	case SCI_GETMARGINBACKN: +		if (ValidMargin(wParam)) +			return vs.ms[wParam].back.AsLong(); +		else +			return 0; +  	case SCI_STYLECLEARALL:  		vs.ClearStyles();  		InvalidateStyleRedraw(); | 
