Fix a font issue in the Graph widget (#1287)

This commit is contained in:
Vanellope 2019-03-14 18:42:42 +09:00 committed by xarkes
parent 0be50ac36f
commit ec62045336

View File

@ -374,6 +374,7 @@ void DisassemblerGraphView::drawBlock(QPainter &p, GraphView::GraphBlock &block)
p.setPen(Qt::black);
p.setBrush(Qt::gray);
p.setFont(Config()->getFont());
p.drawRect(blockX, blockY, block.width, block.height);
breakpoints = Core()->getBreakpointsAddresses();