Skip to content

Commit

Permalink
v1.4.9-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjustin000 committed Jun 13, 2024
1 parent cb08845 commit 79eed4e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Integrated Demonlist Changelog
## v1.4.9-beta.3 (2024-06-12)
- Fixed a bug where the game would crash when viewing daily and weekly levels

## v1.4.9-beta.2 (2024-06-12)
- Fixed a bug where the search box would stay selected after selecting a demon

Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"win": "2.206",
"mac": "2.206"
},
"version": "v1.4.9-beta.2",
"version": "v1.4.9-beta.3",
"id": "hiimjustin000.integrated_demonlist",
"name": "Integrated Demonlist",
"developer": "hiimjustin000",
Expand Down
3 changes: 3 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,12 @@ class $modify(IDLevelCell, LevelCell) {
void onClick(CCObject* sender) {
LevelCell::onClick(sender);

if (!m_tableView) return;

auto layer = m_tableView->getParent()->getParent()->getParent();
if (layer->getID() == "IDListLayer") static_cast<IDListLayer*>(layer)->deselectKeyboard();
}

void loadCustomLevelCell() {
LevelCell::loadCustomLevelCell();

Expand Down

0 comments on commit 79eed4e

Please sign in to comment.