fix minimal miniplayer using incorrectly sized bold icons
This commit is contained in:
parent
5449357f7f
commit
0389073600
3 changed files with 49 additions and 1 deletions
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue