diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Indicator.cxx | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/Indicator.cxx b/src/Indicator.cxx index da75cbb85..ac7435156 100644 --- a/src/Indicator.cxx +++ b/src/Indicator.cxx @@ -152,6 +152,9 @@ void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &r  			surface->FillRectangle(rcDot, fore);  			x += 2;  		} +	} else if (style == INDIC_COMPOSITIONTHICK) { +		PRectangle rcComposition(rc.left+1, rcLine.bottom-2, rc.right-1, rcLine.bottom); +		surface->FillRectangle(rcComposition, fore);  	} else {	// Either INDIC_PLAIN or unknown  		surface->MoveTo(rc.left, ymid);  		surface->LineTo(rc.right, ymid); | 
