|
@@ -231,12 +231,12 @@ export class SFHFQZoneLegendItem extends SPolygonItem {
|
|
|
onDraw(painter: SPainter) {
|
|
|
if (this.maskFlag && this.status == SItemStatus.Normal) {
|
|
|
let color = new SColor(this.strokeColor)
|
|
|
- color.alpha = color.alpha / 2
|
|
|
+ color.alpha = color.alpha / 5
|
|
|
let brushcolor = new SColor(this.fillColor)
|
|
|
- brushcolor.alpha = brushcolor.alpha / 2
|
|
|
+ brushcolor.alpha = brushcolor.alpha / 5
|
|
|
painter.pen.color = color
|
|
|
painter.pen.lineCapStyle = SLineCapStyle.Square
|
|
|
- painter.pen.lineWidth = painter.toPx(this._lineWidth)
|
|
|
+ painter.pen.lineWidth = painter.toPx(this.lineWidth)
|
|
|
painter.brush.color = brushcolor
|
|
|
if (this.selected) {
|
|
|
painter.pen.lineWidth = painter.toPx(this.lineWidth * 2);
|