diff --git a/changelog.md b/changelog.md index 2f317b2..cd40bc6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,6 @@ +# v1.3.2 + * Fix import button in My Lists being misplaced pt. 2 + # v1.3.1 * Fix import button in My Lists being misplaced diff --git a/mod.json b/mod.json index 50f20fd..5b7d40d 100644 --- a/mod.json +++ b/mod.json @@ -5,7 +5,7 @@ "win": "2.206", "mac": "2.206" }, - "version": "1.3.1", + "version": "1.3.2", "id": "hjfod.gdshare", "name": "GDShare", "developer": "HJfod", diff --git a/src/main.cpp b/src/main.cpp index a6dddd1..1746ba6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -220,7 +220,7 @@ struct $modify(ImportLayer, LevelBrowserLayer) { importBtn->setID("import-level-button"_spr); // This one has an ID but no layout which is CRINGE - if (search->m_searchType == SearchType::MyLists) { + if (search->m_searchType == SearchType::MyLists && search->m_searchIsOverlay) { btnMenu->addChildAtPosition(importBtn, Anchor::BottomLeft, ccp(0, 60), false); } else {