chore: do not scale other text in message bubble (#3404)

This commit is contained in:
ggurdin 2025-07-10 13:43:03 -04:00 committed by GitHub
parent 423b84cfdb
commit 67dda37c44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -172,6 +172,7 @@ class OverlayMessage extends StatelessWidget {
const SizedBox(width: 8),
Text(
L10n.of(context).transcriptionFailed,
textScaler: TextScaler.noScaling,
style: AppConfig.messageTextStyle(
event,
textColor,
@ -259,6 +260,7 @@ class OverlayMessage extends StatelessWidget {
showTranslation
? overlayController.translation!
: overlayController.speechTranslation!,
textScaler: TextScaler.noScaling,
style: AppConfig.messageTextStyle(
event,
textColor,
@ -371,6 +373,7 @@ class OverlayMessage extends StatelessWidget {
displayEvent.originServerTs.localizedTimeShort(
context,
),
textScaler: TextScaler.noScaling,
style: TextStyle(
color: textColor.withAlpha(
164,