fix minimal miniplayer using incorrectly sized bold icons

This commit is contained in:
LisoUseInAIKyrios 2025-10-20 11:40:37 +04:00
parent 5449357f7f
commit 0389073600
3 changed files with 49 additions and 1 deletions

View file

@ -379,6 +379,19 @@ public final class MiniplayerPatch {
return original;
}
/**
* Injection point.
*/
public static boolean allowBoldIcons(boolean original) {
if (CURRENT_TYPE == MINIMAL) {
// Minimal player does not have the correct pause/play icon (it's too large).
// Use the non bold icons instead.
return false;
}
return original;
}
/**
* Injection point.
*/