proper tooltips

This commit is contained in:
Dan Ballard 2021-11-02 15:19:16 -07:00
parent 60a4775f4d
commit 82294eb6af
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ class _ServerRowState extends State<ServerRow> {
// Copy server button
IconButton(
enableFeedback: true,
tooltip: AppLocalizations.of(context)!.editProfile + " " + server.onion,
tooltip: AppLocalizations.of(context)!.copyAddress,
icon: Icon(CwtchIcons.address_copy_2, color: Provider.of<Settings>(context).current().mainTextColor()),
onPressed: () {
Clipboard.setData(new ClipboardData(text: server.serverBundle));
@ -68,7 +68,7 @@ class _ServerRowState extends State<ServerRow> {
// Edit button
IconButton(
enableFeedback: true,
tooltip: AppLocalizations.of(context)!.editProfile + " " + server.onion,
tooltip: AppLocalizations.of(context)!.editServerTitle,
icon: Icon(Icons.create, color: Provider.of<Settings>(context).current().mainTextColor()),
onPressed: () {
_pushEditServer(server);