mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix missing tooltip
This commit is contained in:
parent
743dd7c081
commit
ea5706161d
1 changed files with 7 additions and 5 deletions
|
@ -38,11 +38,13 @@ class _AccountPickerDialogState extends State<AccountPickerDialog> {
|
|||
title: Text(a.url),
|
||||
subtitle: Text(a.username),
|
||||
trailing: IconButton(
|
||||
icon: Icon(
|
||||
Icons.close,
|
||||
color: AppTheme.getSecondaryTextColor(context),
|
||||
),
|
||||
onPressed: () => _onRemoveItemPressed(a)),
|
||||
icon: Icon(
|
||||
Icons.close,
|
||||
color: AppTheme.getSecondaryTextColor(context),
|
||||
),
|
||||
tooltip: AppLocalizations.of(context).deleteTooltip,
|
||||
onPressed: () => _onRemoveItemPressed(a),
|
||||
),
|
||||
),
|
||||
))
|
||||
.toList();
|
||||
|
|
Loading…
Reference in a new issue