Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some of the ui wont work #503

Open
1 of 5 tasks
nickysonslayer opened this issue Jan 2, 2025 · 2 comments
Open
1 of 5 tasks

some of the ui wont work #503

nickysonslayer opened this issue Jan 2, 2025 · 2 comments
Assignees
Labels
bug Something isn't working properly

Comments

@nickysonslayer
Copy link

BetterEdit version

6.10.0 alpha 3

Bug description

the ui on some things t[like custom songs are overlapped

Screenshots

Geometry.Dash.2025-01-02.16-51-45.webm

Platform

  • Windows
  • Mac
  • Android (32-bit)
  • Android (64-bit)
  • Linux
@nickysonslayer nickysonslayer added the bug Something isn't working properly label Jan 2, 2025
@Alphalaneous
Copy link
Contributor

This is due to how geode's notifications work and not a direct BetterEdit issue. When a notification appears (such as backup notifications and such) then the z ordering gets messed up

@TheSillyDoggo
Copy link
Contributor

TheSillyDoggo commented Jan 3, 2025

do what qolmod does

class $modify (CCScene)
{
    int getHighestChildZ()
    {
        if (!AndroidBall::get())
            return CCScene::getHighestChildZ();

        auto ins = AndroidBall::get();

        auto v = ins->getZOrder();
        ins->setZOrder(-1);

        int value = CCScene::getHighestChildZ();
        ins->setZOrder(v);

        return value;
    }
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working properly
Projects
Status: Issues
Development

No branches or pull requests

4 participants