Skip to content

Commit

Permalink
peepeepoopoo
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx authored Nov 15, 2024
1 parent a564719 commit 1a44d57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# export-pdb: true # [vscode] comment this out (and the line above!) to Release mode
# bindings: "RayDeeUx/bindings" # [vscode] comment this out to swap to "geode-sdk/bindings"
# bindings-ref: "endscreentweaks" # comment this out to use default branch
sdk: nightly # [vscode] comment this out to use stable Geode SDK version
# sdk: nightly # [vscode] comment this out to use stable Geode SDK version
combine: true
target: ${{ matrix.config.target }}

Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"geode": "4.0.0-alpha.1",
"geode": "4.0.0-beta.1",
"gd": {
"mac": "2.2074",
"android": "2.2074",
Expand Down
2 changes: 1 addition & 1 deletion src/Settings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class MyButtonSettingNodeV3 : public SettingNodeV3 {
this->addChild(theMenu);

for (const auto &node : CCArrayExt<CCNode*>(this->getChildren())) {
node->setVisible(!node->getID().empty());
node->setVisible(!node->getID().empty() && utils::string::startsWith(node->getID(), Mod::get()->getID()));
}

return true;
Expand Down

0 comments on commit 1a44d57

Please sign in to comment.