Add flag for displaying hidden files in the file dialog
Add wxFD_SHOW_HIDDEN and implement support for it for all the major ports. Closes https://github.com/wxWidgets/wxWidgets/pull/1413 Closes #9342.
This commit is contained in:
committed by
Vadim Zeitlin
parent
7e90def99a
commit
8748a476c3
@@ -1616,7 +1616,7 @@ void MyFrame::FileOpen2(wxCommandEvent& WXUNUSED(event) )
|
||||
wxFileSelectorDefaultWildcardStr,
|
||||
wxFileSelectorDefaultWildcardStr
|
||||
),
|
||||
wxFD_OPEN|wxFD_CHANGE_DIR|wxFD_PREVIEW|wxFD_NO_FOLLOW,
|
||||
wxFD_OPEN|wxFD_CHANGE_DIR|wxFD_PREVIEW|wxFD_NO_FOLLOW|wxFD_SHOW_HIDDEN,
|
||||
this
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user