mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-25 08:24:43 +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),
|
title: Text(a.url),
|
||||||
subtitle: Text(a.username),
|
subtitle: Text(a.username),
|
||||||
trailing: IconButton(
|
trailing: IconButton(
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
Icons.close,
|
Icons.close,
|
||||||
color: AppTheme.getSecondaryTextColor(context),
|
color: AppTheme.getSecondaryTextColor(context),
|
||||||
),
|
),
|
||||||
onPressed: () => _onRemoveItemPressed(a)),
|
tooltip: AppLocalizations.of(context).deleteTooltip,
|
||||||
|
onPressed: () => _onRemoveItemPressed(a),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
.toList();
|
.toList();
|
||||||
|
|
Loading…
Add table
Reference in a new issue