mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 16:25:57 +00:00
android, desktop: make space on chat bubble end consistent (#4946)
* android, desktop: make space on chat bubble end consistent * use non breaking spaces for reserve space * avoid first white space non breaking to not drag content down
This commit is contained in:
@@ -125,9 +125,9 @@ fun reserveSpaceForMeta(
|
||||
showViaProxy: Boolean = false,
|
||||
showTimestamp: Boolean
|
||||
): String {
|
||||
val iconSpace = " "
|
||||
val whiteSpace = " "
|
||||
var res = iconSpace
|
||||
val iconSpace = " \u00A0\u00A0\u00A0"
|
||||
val whiteSpace = "\u00A0"
|
||||
var res = if (showTimestamp) "" else iconSpace
|
||||
var space: String? = null
|
||||
|
||||
fun appendSpace() {
|
||||
|
||||
Reference in New Issue
Block a user