-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure showHiddenFiles works with directory dialog #3904
base: master
Are you sure you want to change the base?
Conversation
WalkthroughThe changes made in the pull request involve modifications to the Changes
Assessment against linked issues
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (1)v2/internal/frontend/desktop/darwin/WailsContext.m (1)
The implementation properly uses the native macOS API to control hidden file visibility in both file and directory dialogs, which directly addresses issue #2454. Let's verify that this behavior is consistently handled across the codebase: ✅ Verification successfulHidden files visibility is consistently implemented across platforms The verification confirms that the
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for other dialog implementations that might need similar hidden files handling
# Look for other implementations of file/directory dialogs
rg -l "ShowHiddenFiles|showHiddenFiles" --type go
# Look for related test files
fd -e test.go
Length of output: 236 Script: #!/bin/bash
# Check the implementation of showHiddenFiles in other platforms
rg -A 5 -B 5 "ShowHiddenFiles|showHiddenFiles" --type go
Length of output: 6988 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Deploying wails with Cloudflare Pages
|
Description
Allows "showHiddenFiles" to work with directory dialogs.
Fixes #2454
Summary by CodeRabbit
Bug Fixes
Refactor