X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2Fwidgets%2FFunctionWidget.cxx;h=17b539f4b93db26a749212f83cfd357a97a3ee5e;hp=d717171755e0b223b171cde61f543d6594f64c33;hb=84aeb915b20ba15ffef3371733b2a015c3bfc282;hpb=0e4b70a5cbbb548d6c6d64b56d6db0c53819b3e7 diff --git a/src/gui/widgets/FunctionWidget.cxx b/src/gui/widgets/FunctionWidget.cxx index d717171..17b539f 100644 --- a/src/gui/widgets/FunctionWidget.cxx +++ b/src/gui/widgets/FunctionWidget.cxx @@ -38,7 +38,7 @@ FunctionWidget::FunctionWidget(Function* function, Mainwindow* mainwindow) std::map _blocks; local__add_basic_block(block, mainwindow, - manager, _blocks, scene, start_address, 100); + manager, _blocks, scene, 3*start_address, 100); QGraphicsView * view = new QGraphicsView(scene); view->setDragMode(QGraphicsView::ScrollHandDrag); @@ -77,7 +77,7 @@ namespace { scene->addItem(widget); widget->setFlag(QGraphicsItem::ItemIsMovable, true); - widget->moveBy(100*startx, block->getStartAddress() - starty); + widget->moveBy(100*startx, 3*block->getStartAddress() - starty); BasicBlockWidget *tmp, *nextl(NULL), *nextr(NULL); BasicBlock * tmpblock;