From c397a9cdb7e0807ee3d2523b7430997ec87b4a6f Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 6 Jul 2022 12:24:34 -0700 Subject: [PATCH] Update File Sharing tooltip --- lib/views/messageview.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/views/messageview.dart b/lib/views/messageview.dart index dc711bf9..2d376d66 100644 --- a/lib/views/messageview.dart +++ b/lib/views/messageview.dart @@ -100,8 +100,8 @@ class _MessageViewState extends State { var appBarButtons = []; if (showFileSharing) { - appBarButtons.add(IconButton( - splashRadius: Material.defaultSplashRadius / 2, icon: Icon(Icons.folder_shared), tooltip: AppLocalizations.of(context)!.conversationSettings, onPressed: _pushFileSharingSettings)); + appBarButtons.add( + IconButton(splashRadius: Material.defaultSplashRadius / 2, icon: Icon(Icons.folder_shared), tooltip: AppLocalizations.of(context)!.manageSharedFiles, onPressed: _pushFileSharingSettings)); } if (Provider.of(context).isOnline()) {