Skip to content

Commit

Permalink
fix no transition
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Jul 7, 2024
1 parent 5208001 commit f7d70db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* <cg>Added</c> more <cl>Level Progress</c> information to <co>Editor levels</c>
* "Editor Level IDs API" mod is now required by BI to allow this
* <cg>Added</c> <cl>Coin Count</c> and <cl>Folder</c> filters to <cj>Filtered Search</c>
* <cg>Fixed</c> issues caused by <cl>No Transition</c> in mod menus
* <cg>Fixed</c> various <cr>stability issues</c>

From previous alpha/beta releases:
Expand Down
4 changes: 3 additions & 1 deletion src/layers/_bases/BIBaseLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,10 @@ void BIBaseLayer::onEnterTransitionDidFinish() {
//workaround for no esc catching bug
size_t i = 0;
while(Ref<FLAlertLayer> alert = getChildOfType<FLAlertLayer>(this, i++)) {
alert->removeFromParent();
alert->retain();
alert->removeFromParentAndCleanup(false);
alert->m_noElasticity = true;
alert->show();
alert->release();
}
}

0 comments on commit f7d70db

Please sign in to comment.