Merge pull request #4897 from pangeachat/4888-level-attention-to-emoji-and-audio-icons

chore: Level attention to emoji and audio icons
This commit is contained in:
ggurdin 2025-12-18 13:08:57 -05:00 committed by GitHub
commit fc4e5a5bf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -46,6 +46,7 @@ class TokenFeedbackButton extends StatelessWidget {
final transcript = transcriptController.transcription ?? 'ERROR';
return IconButton(
color: Theme.of(context).iconTheme.color,
icon: const Icon(Icons.flag_outlined),
onPressed: enabled
? () {

View file

@ -78,6 +78,7 @@ class WordZoomWidget extends StatelessWidget {
children: [
onClose != null
? IconButton(
color: Theme.of(context).iconTheme.color,
icon: const Icon(Icons.close),
onPressed: onClose,
)