X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2Fwidgets%2FBasicBlockWidget.cxx;h=94e07589399da8341d3dee7deb42dd19e714ea8b;hp=7b33fe0a17fe43f530519c8e3c1544bae375b0d2;hb=78867bb76bf70f3b906d1a1a96edd45a88674c44;hpb=cc7580dd344851907ef3003b838da0aa41f6aaf2 diff --git a/src/gui/widgets/BasicBlockWidget.cxx b/src/gui/widgets/BasicBlockWidget.cxx index 7b33fe0..94e0758 100644 --- a/src/gui/widgets/BasicBlockWidget.cxx +++ b/src/gui/widgets/BasicBlockWidget.cxx @@ -6,6 +6,8 @@ BasicBlockWidget::BasicBlockWidget(const QString& name, BasicBlock * block) next[0] = NULL; next[1] = NULL; _widget.move(5, 20); _widget.setGridStyle(Qt::NoPen); + _widget.setShowGrid(false); + _widget.setWordWrap(false); _widget.setMinimumHeight(_widget.rowHeight(0) + 10); _widget.setMaximumHeight(20); _widget.resizeColumnToContents(0); @@ -51,14 +53,14 @@ void BasicBlockWidget::addItem(uint8_t* bytes, size_t num_bytes, _widget.columnWidth(0) + _widget.columnWidth(1) + _widget.columnWidth(2) + - 2; + 5; _widget.setMinimumWidth(column_width); - _widget.setMinimumHeight(_widget.rowHeight(0) * (_widget.rowCount()) + 2); - _widget.setMaximumHeight(_widget.rowHeight(0) * (_widget.rowCount()) + 2); + _widget.setMinimumHeight((1 + _widget.rowHeight(0)) * (_widget.rowCount()) + 2); + _widget.setMaximumHeight((1 + _widget.rowHeight(0)) * (_widget.rowCount()) + 2); - height = _widget.rowHeight(0) * (_widget.rowCount()) + 25; + height = (1 + _widget.rowHeight(0)) * (_widget.rowCount()) + 25; width = column_width + 10; if (width < 270) width = 270; }