aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@qt.io>2018-08-30 14:49:19 +0200
committerRichard Moe Gustavsen <richard.gustavsen@qt.io>2018-09-06 11:17:56 +0000
commit3e27cb8dd5fc7ff238946d9b96891e40cf9981f9 (patch)
treef32cc5151dfad19490c2e0ff95935b6c36e13dc7 /src
parent43b5b2bda66dea6c47eb55525341d703b4e22652 (diff)
QQuickTableView: add anchor check for delegate
If a delegate is using anchors, TableView will not be able to layout the item. So issue a warning if that is the case. Change-Id: I358d981067c23fdab2fc486003afc8bd685f940d Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/quick/items/qquicktableview.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/quick/items/qquicktableview.cpp b/src/quick/items/qquicktableview.cpp
index 2e594df8dd..ce71acc922 100644
--- a/src/quick/items/qquicktableview.cpp
+++ b/src/quick/items/qquicktableview.cpp
@@ -695,6 +695,11 @@ FxTableItem *QQuickTableViewPrivate::createFxTableItem(const QPoint &cell, QQmlI
model->release(object);
item = new QQuickItem();
ownItem = true;
+ } else {
+ QQuickAnchors *anchors = QQuickItemPrivate::get(item)->_anchors;
+ if (anchors && anchors->activeDirections())
+ qmlWarning(item) << "TableView: detected anchors on delegate with index: " << modelIndex
+ << ". Use implicitWidth and implicitHeight instead.";
}
if (ownItem) {