commit 353838f19a3c0a5529563bcbfa2ccd2ae45b23f6
parent fa7071284ff012f831818fd668c06552d9bbb6bd
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 17 Feb 2024 18:03:37 +0100
fix(core/bulk_messaging_action): text overflow
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/main/kotlin/me/rhunk/snapenhance/core/action/impl/BulkMessagingAction.kt b/core/src/main/kotlin/me/rhunk/snapenhance/core/action/impl/BulkMessagingAction.kt
@@ -235,7 +235,7 @@ class BulkMessagingAction : AbstractAction() {
checked = sortReverseOrder,
onCheckedChange = { sortReverseOrder = it },
)
- Text(text = "Reverse order", fontSize = 15.sp, fontWeight = FontWeight.Light)
+ Text(text = "Reverse order", fontSize = 15.sp, fontWeight = FontWeight.Light, maxLines = 1, overflow = TextOverflow.Ellipsis)
}
}