From 28fab7a9182032ddb98f0131b0d5b07798969624 Mon Sep 17 00:00:00 2001
From: curche <72807749+curche@users.noreply.github.com>
Date: Mon, 3 May 2021 21:46:38 +0530
Subject: [PATCH] fixes to Migration menu layouts (#295)
* fix Migration process item option button color
fixed by comparing with other layouts and adding app:tint to migration
process item layout
fixes https://github.com/jobobby04/TachiyomiSY/issues/287
* fix migration manga card layout for white theme
compared with other layouts like source compact card item and realised
that textColor was missing.
Also added font so that it looks cooler :d
---
app/src/main/res/layout/migration_manga_card.xml | 2 ++
app/src/main/res/layout/migration_process_item.xml | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/app/src/main/res/layout/migration_manga_card.xml b/app/src/main/res/layout/migration_manga_card.xml
index 2c9e1fb32..e5e27ac5c 100644
--- a/app/src/main/res/layout/migration_manga_card.xml
+++ b/app/src/main/res/layout/migration_manga_card.xml
@@ -74,6 +74,7 @@
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:ellipsize="end"
+ android:fontFamily="@font/ptsans_narrow_bold"
android:lineSpacingExtra="-4dp"
android:maxLines="2"
android:padding="8dp"
@@ -81,6 +82,7 @@
android:shadowDx="0"
android:shadowDy="0"
android:shadowRadius="4"
+ android:textColor="@color/md_white_1000"
tools:text="Sample name" />
-
+ android:visibility="invisible"
+ app:tint="?attr/colorOnPrimary" />