Skip to content

Commit edf5ac5

Browse files
committed
Fixes #14239
1 parent b9abe9c commit edf5ac5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

app/src/main/java/org/thoughtcrime/securesms/components/settings/app/AppSettingsFragment.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ import androidx.compose.ui.res.colorResource
3535
import androidx.compose.ui.res.painterResource
3636
import androidx.compose.ui.res.stringResource
3737
import androidx.compose.ui.res.vectorResource
38+
import androidx.compose.ui.text.TextStyle
3839
import androidx.compose.ui.text.style.TextAlign
40+
import androidx.compose.ui.text.style.TextDirection
3941
import androidx.compose.ui.unit.dp
4042
import androidx.fragment.app.viewModels
4143
import androidx.lifecycle.Lifecycle
@@ -634,7 +636,10 @@ private fun BioRow(
634636

635637
Text(
636638
text = prettyPhoneNumber,
637-
color = MaterialTheme.colorScheme.onSurfaceVariant
639+
color = MaterialTheme.colorScheme.onSurfaceVariant,
640+
style = TextStyle(
641+
textDirection = TextDirection.ContentOrLtr
642+
)
638643
)
639644

640645
if (hasUsername) {

0 commit comments

Comments
 (0)