mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-26 17:36:05 -05:00
make sure mods are aligned to the top on grid view
This commit is contained in:
parent
555ebe3eb3
commit
f90461fbb7
1 changed files with 13 additions and 3 deletions
|
@ -15,9 +15,9 @@ static size_t getDisplayPageSize(ModListSource* src, ModListDisplay display) {
|
||||||
|
|
||||||
$execute {
|
$execute {
|
||||||
listenForSettingChanges("infinite-local-mods-list", [](bool value) {
|
listenForSettingChanges("infinite-local-mods-list", [](bool value) {
|
||||||
InstalledModListSource::get(InstalledModListType::All)->reset();
|
InstalledModListSource::get(InstalledModListType::All)->clearCache();
|
||||||
InstalledModListSource::get(InstalledModListType::OnlyErrors)->reset();
|
InstalledModListSource::get(InstalledModListType::OnlyErrors)->clearCache();
|
||||||
InstalledModListSource::get(InstalledModListType::OnlyOutdated)->reset();
|
InstalledModListSource::get(InstalledModListType::OnlyOutdated)->clearCache();
|
||||||
// Updates is technically a server mod list :-) So I left it out here
|
// Updates is technically a server mod list :-) So I left it out here
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -601,6 +601,16 @@ void ModList::updateDisplay(ModListDisplay display) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Make sure list isn't too small
|
||||||
|
// NOTE: Do NOT call `updateLayout` on m_list, it'll undo this!
|
||||||
|
if (m_list->m_contentLayer->getContentHeight() < m_list->getContentHeight()) {
|
||||||
|
auto diff = m_list->getContentHeight() - m_list->m_contentLayer->getContentHeight();
|
||||||
|
m_list->m_contentLayer->setContentHeight(m_list->getContentHeight());
|
||||||
|
for (auto child : CCArrayExt<CCNode*>(m_list->m_contentLayer->getChildren())) {
|
||||||
|
child->setPositionY(child->getPositionY() + diff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Preserve relative scroll position
|
// Preserve relative scroll position
|
||||||
m_list->m_contentLayer->setPositionY((
|
m_list->m_contentLayer->setPositionY((
|
||||||
m_list->m_contentLayer->getContentHeight() - m_list->getContentHeight()
|
m_list->m_contentLayer->getContentHeight() - m_list->getContentHeight()
|
||||||
|
|
Loading…
Reference in a new issue