Skip to content

Commit

Permalink
mac os beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Jan 29, 2024
1 parent 3b9c8d8 commit e13f635
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,22 @@ class $modify(ProfilePage) {

if (g->getOpacity() == 0)
{
#ifdef GEODE_IS_MACOS
g->setOpacity(255);
#else
g->runAction(CCFadeIn::create(0.25f));
#endif
}

if (d)
{
if (d->getOpacity() == 0)
{
d->runAction(CCFadeIn::create(0.25f));
#ifdef GEODE_IS_MACOS
d->setOpacity(255);
#else
d->runAction(CCFadeIn::create(0.25f));
#endif
}
}
}
Expand Down Expand Up @@ -470,7 +478,6 @@ class $modify(InfoLayer) {

};

/*
#ifndef GEODE_IS_MACOS

class $modify (GJCommentListLayer)
Expand Down Expand Up @@ -963,4 +970,4 @@ class $modify (SetIDPopup)
}
};

#endif*/
#endif

0 comments on commit e13f635

Please sign in to comment.