aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/PackProfile.cpp
diff options
context:
space:
mode:
authorTheLastRar <TheLastRar@users.noreply.github.com>2022-11-13 14:35:55 +0000
committerTheLastRar <TheLastRar@users.noreply.github.com>2022-11-14 19:05:57 +0000
commitfce323b945d5e8365c64c61e3ba592cb2b7446c4 (patch)
tree664b89393cbb6e201a45216e773b3ef643cebf3b /launcher/minecraft/PackProfile.cpp
parent5558f3d2ccde1f1a043fbb82c0856ae3241dc20f (diff)
downloadPrismLauncher-fce323b945d5e8365c64c61e3ba592cb2b7446c4.tar.gz
PrismLauncher-fce323b945d5e8365c64c61e3ba592cb2b7446c4.tar.bz2
PrismLauncher-fce323b945d5e8365c64c61e3ba592cb2b7446c4.zip
Check parent in rowCount/columnCount/canFetchMore
Signed-off-by: TheLastRar <TheLastRar@users.noreply.github.com>
Diffstat (limited to 'launcher/minecraft/PackProfile.cpp')
-rw-r--r--launcher/minecraft/PackProfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/minecraft/PackProfile.cpp b/launcher/minecraft/PackProfile.cpp
index 1618458f..89b85d6a 100644
--- a/launcher/minecraft/PackProfile.cpp
+++ b/launcher/minecraft/PackProfile.cpp
@@ -675,12 +675,12 @@ Qt::ItemFlags PackProfile::flags(const QModelIndex &index) const
int PackProfile::rowCount(const QModelIndex &parent) const
{
- return d->components.size();
+ return parent.isValid() ? 0 : d->components.size();
}
int PackProfile::columnCount(const QModelIndex &parent) const
{
- return NUM_COLUMNS;
+ return parent.isValid() ? 0 : NUM_COLUMNS;
}
void PackProfile::move(const int index, const MoveDirection direction)