arkon 5 lat temu
rodzic
commit
a5d9fb518a

+ 9 - 7
app/src/main/java/eu/kanade/tachiyomi/ui/manga/info/MangaInfoController.kt

@@ -284,24 +284,26 @@ class MangaInfoController(private val fromSource: Boolean = false) :
     }
 
     private fun toggleMangaInfo(context: Context) {
+        val isExpanded = binding.mangaInfoToggle.text == context.getString(R.string.manga_info_collapse)
+
         binding.mangaInfoToggle.text =
-            if (binding.mangaInfoToggle.text == context.getString(R.string.manga_info_expand))
-                context.getString(R.string.manga_info_collapse)
-            else
+            if (isExpanded)
                 context.getString(R.string.manga_info_expand)
+            else
+                context.getString(R.string.manga_info_collapse)
 
         with(binding.mangaSummary) {
             maxLines =
-                if (maxLines == Int.MAX_VALUE)
+                if (isExpanded)
                     3
                 else
                     Int.MAX_VALUE
 
             ellipsize =
-                if (ellipsize == TextUtils.TruncateAt.END)
-                    null
-                else
+                if (isExpanded)
                     TextUtils.TruncateAt.END
+                else
+                    null
         }
 
         binding.mangaGenresTags.toggle()

+ 0 - 9
app/src/main/res/layout/manga_info_controller.xml

@@ -206,15 +206,6 @@
                     android:text="@string/add_to_library"
                     app:icon="@drawable/ic_add_to_library_24dp" />
 
-                <!--                <com.google.android.material.button.MaterialButton-->
-                <!--                    android:id="@+id/btn_tracking"-->
-                <!--                    style="@style/Theme.Widget.Button.Icon"-->
-                <!--                    android:layout_width="wrap_content"-->
-                <!--                    android:layout_height="wrap_content"-->
-                <!--                    android:layout_marginStart="8dp"-->
-                <!--                    android:text="@string/manga_tracking_tab"-->
-                <!--                    app:icon="@drawable/ic_sync_24dp" />-->
-
                 <com.google.android.material.button.MaterialButton
                     android:id="@+id/btn_share"
                     style="@style/Theme.Widget.Button.Icon.Textless"