From 0dd471cb4000bcc97b413115bfae5cce6af94fcf Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 29 Nov 2023 22:51:37 -0500 Subject: [PATCH] Indicate that all columns changed --- src/artmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/artmodel.cpp b/src/artmodel.cpp index 838c247..cff1274 100644 --- a/src/artmodel.cpp +++ b/src/artmodel.cpp @@ -133,7 +133,7 @@ void ArtModel::finished() return a.date > b.date; }); - Q_EMIT dataChanged(index(0, 0), index(m_artPieces.size(), 0)); + Q_EMIT dataChanged(index(0, 0), index(m_artPieces.size(), 3)); Q_EMIT loadingFinished(); }