aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp
diff options
context:
space:
mode:
authorFayne Aldan <FayneAldan@gmail.com>2022-11-15 18:34:24 -0700
committerGitHub <noreply@github.com>2022-11-15 18:34:24 -0700
commite8b871ac72430c210e4750dcae8a119e8d757e20 (patch)
tree243cf3dabfb9316c92414994e47a1861497906b5 /launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp
parent9f30c6d94b3c3fd5dbc5f998c9e9c8083b4d57df (diff)
parentcedc7754d96e4c53d50bcce2b2a0f139b840f3d0 (diff)
downloadPrismLauncher-e8b871ac72430c210e4750dcae8a119e8d757e20.tar.gz
PrismLauncher-e8b871ac72430c210e4750dcae8a119e8d757e20.tar.bz2
PrismLauncher-e8b871ac72430c210e4750dcae8a119e8d757e20.zip
Merge branch 'PrismLauncher:develop' into version
Diffstat (limited to 'launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp')
-rw-r--r--launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp b/launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp
index ef9a9268..2ce04068 100644
--- a/launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp
+++ b/launcher/ui/pages/modplatform/atlauncher/AtlListModel.cpp
@@ -32,12 +32,12 @@ ListModel::~ListModel()
int ListModel::rowCount(const QModelIndex &parent) const
{
- return modpacks.size();
+ return parent.isValid() ? 0 : modpacks.size();
}
int ListModel::columnCount(const QModelIndex &parent) const
{
- return 1;
+ return parent.isValid() ? 0 : 1;
}
QVariant ListModel::data(const QModelIndex &index, int role) const