Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Feb 13, 2024
1 parent c300f1d commit af8fc11
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

## v6.2.1

* Fix crash on mobile when typing in layer number
* Fix crash when re-entering editor

## v6.2.0

* Bring back quarter & eighth block move keybinds as the root issue was fixed in Geode Beta 18
Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"geode": "2.0.0-beta.18",
"version": "v6.2.0",
"version": "v6.2.1",
"gd": {
"win": "2.204",
"mac": "2.200",
Expand Down
2 changes: 1 addition & 1 deletion src/features/TypeInZLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class $modify(TypeInUI, EditorUI) {
auto layerLockSpr = CCSprite::createWithSpriteFrameName("GJ_lockGray_001.png");
layerLockSpr->setScale(.75f);
auto layerLockBtn = CCMenuItemSpriteExtra::create(
layerLockSpr, this, menu_selector(TypeInUI::onLockLayerReal)
layerLockSpr, this, menu_selector(TypeInUI::onLockLayer)
);
layerLockBtn->setID("lock-layer"_spr);
layerMenu->insertBefore(layerLockBtn, nullptr);
Expand Down

0 comments on commit af8fc11

Please sign in to comment.