Skip to content

Commit 09cb7ac

Browse files
committed
Fix grid when converting to picture and there is explicitly no background set ACI0105520
regression due to fix
1 parent 91f5560 commit 09cb7ac

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Project/Sources/Methods/svg_drawGridline.4dm

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,16 @@ If ($drawHGrid)
7171
If ($bcObj.bcGrid#Null:C1517)
7272
If ($bcObj.bcGrid[String:C10($Y)]#Null:C1517)
7373
If ($bcObj.bcGrid[String:C10($Y)][String:C10($X)]#Null:C1517)
74-
$noBgH:=False:C215
74+
If (String:C10($bcObj.bcGrid[String:C10($Y)][String:C10($X)].col)#"$4D_NOCOLOR")
75+
$noBgH:=False:C215
76+
End if
7577
End if
7678
End if
7779
If ($bcObj.bcGrid[String:C10($Y-1)]#Null:C1517)
7880
If ($bcObj.bcGrid[String:C10($Y-1)][String:C10($X)]#Null:C1517)
79-
$noBgH:=False:C215
81+
If (String:C10($bcObj.bcGrid[String:C10($Y-1)][String:C10($X)].col)#"$4D_NOCOLOR")
82+
$noBgH:=False:C215
83+
End if
8084
End if
8185
End if
8286
End if

0 commit comments

Comments
 (0)