fix: restore tap/click handling in folder tree view

This commit is contained in:
edde746
2026-02-24 23:54:42 +01:00
parent e0489b68d5
commit 50660013cc
+5 -1
View File
@@ -132,7 +132,11 @@ class FolderTreeItem extends StatelessWidget {
useBackgroundFocus: true,
disableScale: true,
descendantsAreFocusable: false,
child: rowContent,
child: GestureDetector(
onTap: _handleTap,
behavior: HitTestBehavior.opaque,
child: rowContent,
),
),
),