Skip to content

Commit

Permalink
Improve Lockscreen Album Art
Browse files Browse the repository at this point in the history
  • Loading branch information
DHD2280 committed Jun 20, 2024
1 parent 98476d8 commit e8543cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
shouldShowArt = (boolean) param.args[0];
updateAlbumArt();
}
});

hookAllMethods(CentralSurfacesImplClass, "onKeyguardGoingAway", new XC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
shouldShowArt = false;
updateAlbumArt();
}
});
Expand Down

0 comments on commit e8543cc

Please sign in to comment.