From b780aae38f2fc41a5c0b28b5fb7dd0a4bebb2f3c Mon Sep 17 00:00:00 2001 From: zarzet Date: Sat, 22 Aug 2026 13:37:06 +0700 Subject: [PATCH] fix(library): open folder actions on row tap --- lib/screens/settings/library_settings_page.dart | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/screens/settings/library_settings_page.dart b/lib/screens/settings/library_settings_page.dart index d9505585..4c22fbea 100644 --- a/lib/screens/settings/library_settings_page.dart +++ b/lib/screens/settings/library_settings_page.dart @@ -1017,6 +1017,7 @@ class _LibrarySourceSettingsItem extends StatelessWidget { ) : null, subtitle: pathLine == null ? details : '$pathLine\n$details', + onTap: () => _showActions(context), trailing: Row( mainAxisSize: MainAxisSize.min, children: [ @@ -1032,11 +1033,6 @@ class _LibrarySourceSettingsItem extends StatelessWidget { value: source.enabled, onChanged: enabled ? onEnabledChanged : null, ), - IconButton( - tooltip: MaterialLocalizations.of(context).moreButtonTooltip, - onPressed: () => _showActions(context), - icon: const Icon(Icons.more_vert), - ), ], ), ),