Servers experiment and manager #214

Merged
dan merged 10 commits from server into trunk 2021-11-02 22:26:10 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 82294eb6af - Show all commits

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);