]> git.siccegge.de Git - frida/frida.git/blobdiff - src/gui/widgets/BasicBlockWidget.cxx
Space table widget appropriately for Qt < 5.3
[frida/frida.git] / src / gui / widgets / BasicBlockWidget.cxx
index 7b33fe0a17fe43f530519c8e3c1544bae375b0d2..94e07589399da8341d3dee7deb42dd19e714ea8b 100644 (file)
@@ -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;
 }