fix(YouTube/Overlay buttons): image of the Mute video button is reversed

This commit is contained in:
inotia00 2024-07-13 17:18:10 +09:00
parent c2d72dad94
commit 6304e607f1
31 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<selector android:constantSize="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true">
<bitmap android:src="@drawable/revanced_volume_unmuted" android:tint="@color/yt_white1"/>
</item>
<item android:state_activated="false">
<bitmap android:src="@drawable/revanced_volume_muted" android:tint="@color/yt_white1"/>
<bitmap android:src="@drawable/revanced_volume_unmuted_button" android:tint="@color/yt_white1"/>
</item>
<item android:state_activated="true">
<bitmap android:src="@drawable/revanced_volume_muted_button" android:tint="@color/yt_white1"/>
</item>
</selector>