From d3dfc05cb226795a62f72e5bfd9c418e8b835991 Mon Sep 17 00:00:00 2001 From: Nyx <82726593+everypizza1@users.noreply.github.com> Date: Sun, 22 Sep 2024 09:20:38 -0500 Subject: [PATCH] fix: use correct icon for download --- assets/l10n/intl_en.arb | 3 ++- lib/pages/chat/chat_view.dart | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/assets/l10n/intl_en.arb b/assets/l10n/intl_en.arb index b8ef839d5b..e888ee23cf 100644 --- a/assets/l10n/intl_en.arb +++ b/assets/l10n/intl_en.arb @@ -2762,5 +2762,6 @@ "whatIsAHomeserver": "What is a homeserver?", "homeserverDescription": "All your data is stored on the homeserver, just like an email provider. You can choose which homeserver you want to use, while you can still communicate with everyone. Learn more at at https://matrix.org.", "doesNotSeemToBeAValidHomeserver": "Doesn't seem to be a compatible homeserver. Wrong URL?", - "calculatingFileSize": "Calculating file size..." + "calculatingFileSize": "Calculating file size...", + "download": "Download" } diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index f22ef46bb4..c5741acb8d 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -50,8 +50,8 @@ class ChatView extends StatelessWidget { // Use builder context to correctly position the share dialog on iPad Builder( builder: (context) => IconButton( - icon: Icon(Icons.adaptive.share), - tooltip: L10n.of(context)!.share, + icon: Icon(Icons.download_outlined), + tooltip: L10n.of(context)!.download, onPressed: () => controller.saveSelectedEvent(context), ), ),