aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-04-08 14:15:33 +0200
committerKarel Kočí <cynerd@email.cz>2018-04-08 14:15:33 +0200
commit376400e4b88ee4b6ca284a8dfce47c95921545fa (patch)
treefda4ba49ebb0d72bd7f5855a36cb99e92f172400 /qtmips_gui
parentec54415ae4299aede92ba3526aadfc6986f17e82 (diff)
downloadqtmips-376400e4b88ee4b6ca284a8dfce47c95921545fa.tar.gz
qtmips-376400e4b88ee4b6ca284a8dfce47c95921545fa.tar.bz2
qtmips-376400e4b88ee4b6ca284a8dfce47c95921545fa.zip
Don't insert another column when statictable widget is not wider
This makes static table widget to have only one column until it's wider then higher.
Diffstat (limited to 'qtmips_gui')
-rw-r--r--qtmips_gui/statictable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtmips_gui/statictable.cpp b/qtmips_gui/statictable.cpp
index 594476b..c989491 100644
--- a/qtmips_gui/statictable.cpp
+++ b/qtmips_gui/statictable.cpp
@@ -148,7 +148,7 @@ int StaticTableLayout::real_row_height() {
}
int StaticTableLayout::layout_count_approx(const QRect &rect) const {
- if (items.size() <= 0)
+ if (items.size() <= 0 || rect.width() < rect.height())
return 1;
// Note: for some reason (probably optimalisation) when qlabel is not visible it reports 0 size. So we have to found at least one that is visible
int vis = 0;