mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-23 21:27:40 +03:00
fix(player): Fix text placeholders
Sometimes you could see Miru Tights pop up which is a bit confusing for the user
This commit is contained in:
parent
664479ebf9
commit
48dc3fca18
1 changed files with 6 additions and 6 deletions
|
@ -64,7 +64,6 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="10dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:text="Miru Tights"
|
||||
android:textColor="?attr/colorOnPrimarySurface"
|
||||
android:textSize="14sp"
|
||||
android:textStyle="bold"
|
||||
|
@ -73,7 +72,8 @@
|
|||
android:focusable="true"
|
||||
app:layout_constraintLeft_toRightOf="@id/backArrowBtn"
|
||||
app:layout_constraintRight_toLeftOf="@id/episodeListBtn"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
tools:text="Anime Name" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/titleSecondaryTxt"
|
||||
|
@ -81,7 +81,6 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="10dp"
|
||||
android:alpha="0.5"
|
||||
android:text="Episode: BRUH"
|
||||
android:textColor="?attr/colorOnPrimarySurface"
|
||||
android:textSize="12sp"
|
||||
android:textStyle="italic"
|
||||
|
@ -90,7 +89,8 @@
|
|||
android:focusable="true"
|
||||
app:layout_constraintLeft_toRightOf="@id/backArrowBtn"
|
||||
app:layout_constraintRight_toLeftOf="@id/episodeListBtn"
|
||||
app:layout_constraintTop_toBottomOf="@id/titleMainTxt" />
|
||||
app:layout_constraintTop_toBottomOf="@id/titleMainTxt"
|
||||
tools:text="Episode Name" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/episodeListBtn"
|
||||
|
@ -313,7 +313,7 @@
|
|||
android:background="?attr/selectableItemBackground"
|
||||
android:onClick="cycleSpeed"
|
||||
android:gravity="center"
|
||||
android:text="10.00x"
|
||||
android:text="1.00x"
|
||||
android:textSize="12sp"
|
||||
android:textColor="?attr/colorOnPrimarySurface" />
|
||||
|
||||
|
@ -334,7 +334,7 @@
|
|||
android:onClick="skipIntro"
|
||||
android:text=""
|
||||
android:textSize="12sp"
|
||||
tools:text="+255s"
|
||||
tools:text="+85s"
|
||||
android:textColor="?attr/colorOnPrimary" />
|
||||
|
||||
<ImageButton
|
||||
|
|
Loading…
Reference in a new issue