From 0b72c679bcd808046ee26cb96b038b80cd4448fb Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Tue, 7 Apr 2026 14:23:59 -0400 Subject: [PATCH] fix: update tooltip - hidden folders not visible in native dialogs The Cmd+Shift+. shortcut does not work in NSOpenPanel dialogs used by file_picker. Path input field is the recommended way to access hidden folders like ~/.claude. Signed, notarized, stapled DMG --- lib/screens/home/home_screen.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/screens/home/home_screen.dart b/lib/screens/home/home_screen.dart index b183632..c5db2ee 100644 --- a/lib/screens/home/home_screen.dart +++ b/lib/screens/home/home_screen.dart @@ -663,8 +663,11 @@ class _HomeScreenState extends State { ), const SizedBox(width: 8), Tooltip( - message: 'Press Cmd+Shift+. in dialogs to show hidden folders', - child: Icon(Icons.info_outline, size: 14, color: AppColors.textMuted), + message: 'Type a path with hidden folders directly in the input field', + child: Padding( + padding: const EdgeInsets.only(left: 4), + child: Icon(Icons.info_outline, size: 14, color: AppColors.textMuted), + ), ), ], ),