Fix badge count getting cut off on tab title

Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
This commit is contained in:
Secozzi 2024-07-11 22:40:51 +02:00
parent f9d340819a
commit 3eab4e6b9f
No known key found for this signature in database
GPG key ID: 71E9C97D8DDC2662

View file

@ -6,6 +6,7 @@ import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.text.style.TextOverflow
import androidx.compose.ui.unit.sp
import tachiyomi.presentation.core.components.Pill
@ -24,6 +25,7 @@ fun TabText(
text = text,
maxLines = 1,
overflow = TextOverflow.Ellipsis,
modifier = Modifier.weight(1f, fill = false),
)
if (badgeCount != null) {
Pill(