aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform/ftb
diff options
context:
space:
mode:
authorADudeCalledLeo <7997354+Leo40Git@users.noreply.github.com>2022-11-15 10:05:04 +0200
committerADudeCalledLeo <7997354+Leo40Git@users.noreply.github.com>2022-11-15 10:05:04 +0200
commitba46ff6692beb49c32260a962894c53996c32ccf (patch)
tree4df8660508f0e93587f9d0fb221bed960f0d7b31 /launcher/ui/pages/modplatform/ftb
parentcca052ccc9d644c84384ceefe97bbce45381a9e2 (diff)
parentcedc7754d96e4c53d50bcce2b2a0f139b840f3d0 (diff)
downloadPrismLauncher-ba46ff6692beb49c32260a962894c53996c32ccf.tar.gz
PrismLauncher-ba46ff6692beb49c32260a962894c53996c32ccf.tar.bz2
PrismLauncher-ba46ff6692beb49c32260a962894c53996c32ccf.zip
Merge remote-tracking branch 'upstream/develop' into feature/instance-shortcuts
Diffstat (limited to 'launcher/ui/pages/modplatform/ftb')
-rw-r--r--launcher/ui/pages/modplatform/ftb/FtbListModel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/ftb/FtbListModel.cpp b/launcher/ui/pages/modplatform/ftb/FtbListModel.cpp
index 3a149944..ce2b2b18 100644
--- a/launcher/ui/pages/modplatform/ftb/FtbListModel.cpp
+++ b/launcher/ui/pages/modplatform/ftb/FtbListModel.cpp
@@ -34,12 +34,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