Skip to content

Commit 86ebbf3

Browse files
committed
Use variable line width when drawing MBs
1 parent 68bce6d commit 86ebbf3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/variety-common/Graphic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ pzpr.classmgr.makeCommon({
15301530
//---------------------------------------------------------------------------
15311531
drawMBs: function(withcross) {
15321532
var g = this.vinc("cell_mb", "auto", true);
1533-
g.lineWidth = 1;
1533+
g.lineWidth = Math.max(1, this.cw * 0.04);
15341534

15351535
var rsize = this.cw * 0.35;
15361536
var clist = this.range.cells;

0 commit comments

Comments
 (0)