Replace NFD Dependency With DialogModule#2761
Open
samuelvenable wants to merge 86 commits into
Open
Conversation
Collaborator
WerWolv
added a commit
that referenced
this pull request
Jul 2, 2026
Owner
|
Hey! Latest commit properly sets the parent window on the file dialogs. I hope this solves some of the issues. About the rest of the PR, having to pull in the entirety of SDL is pretty much a show stopper for me. I've been thinking about replacing GLFW with SDL3 eventually but that will require a ton of work elsewhere. I'd rather not have both in at the same time |
Update CMakeLists.txt
Update file_provider.cpp
Update fs.cpp
Update fs.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Problem description
File dialogs, (as provided with the NFD dep), do not support a file filter dropdown box on macOS. This fixes that, by replacing the NFD dependency with
libdlgmod. More details here: https://github.com/samuelvenable/libdlgmodImplementation description
I replaced the NFD dependency with my own file dialogs which are improved ones compared to NFD. They also match the current desktop environment: Qt on KDE, GTK on non-KDE, WinAPI on Windows, and AppKit on macOS.
Screenshots