fix bb layer position error

This commit is contained in:
yyc12345 2020-04-13 20:32:14 +08:00
parent c1b3dfbfff
commit ac033a3ae3
2 changed files with 2 additions and 3 deletions

View File

@ -145,13 +145,12 @@ def buildBlock(exDb, deDb, target, currentGraphBlockCell):
else:
layer_height[curLayer] = max(layer_height.get(curLayer, 0), bbResult[i].height)
layer_height[arrangedLayer] = layer_height.get(arrangedLayer, 0) # make sure misc bb height exist
for i in occupiedLayerCountForSpecificBB.keys(): # add oper occipation
layer_height[i] += (occupiedLayerCountForSpecificBB[i] + 1) * dcv.GRAPH_SPAN_BB_POPER
# calc bb Y
baseY = dcv.GRAPH_CONTENTOFFSET_Y
for i in range(arrangedLayer + 1):
baseY += layer_height[i] + dcv.GRAPH_LAYER_SPAN
baseY += occupiedLayerCountForSpecificBB.get(i, 0) * dcv.GRAPH_SPAN_BB_POPER # add oper occipation
layer_y[i] = baseY
for i in bbResult.keys():
cache = bbResult[i]

View File

@ -4,7 +4,7 @@ import os
import sys
# debug use
# os.remove('decorate.db')
os.remove('decorate.db')
print('Super Script View')
if not os.path.isfile("decorate.db"):