mirror of
https://github.com/revanced/revanced-integrations
synced 2024-11-27 11:13:38 +01:00
fix(YouTube - Return YouTube dislike): Fix layout of right to left languages
This commit is contained in:
parent
b514bdd7d0
commit
11abdf162f
@ -335,9 +335,13 @@ public class ReturnYouTubeDislikePatch {
|
|||||||
// YouTube Rolling Numbers do not use compound drawables or drawable padding.
|
// YouTube Rolling Numbers do not use compound drawables or drawable padding.
|
||||||
if (view.getCompoundDrawablePadding() == 0) {
|
if (view.getCompoundDrawablePadding() == 0) {
|
||||||
LogHelper.printDebug(() -> "Adding rolling number TextView changes");
|
LogHelper.printDebug(() -> "Adding rolling number TextView changes");
|
||||||
ShapeDrawable leftSeparator = ReturnYouTubeDislike.getLeftSeparatorDrawable();
|
|
||||||
view.setCompoundDrawables(leftSeparator, null, null, null);
|
|
||||||
view.setCompoundDrawablePadding(ReturnYouTubeDislike.leftSeparatorShapePaddingPixels);
|
view.setCompoundDrawablePadding(ReturnYouTubeDislike.leftSeparatorShapePaddingPixels);
|
||||||
|
ShapeDrawable separator = ReturnYouTubeDislike.getLeftSeparatorDrawable();
|
||||||
|
if (ReVancedUtils.isRightToLeftTextLayout()) {
|
||||||
|
view.setCompoundDrawables(null, null, separator, null);
|
||||||
|
} else {
|
||||||
|
view.setCompoundDrawables(separator, null, null, null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user