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
@@ -48,7 +48,8 @@ enum
|
||||
wxFD_FILE_MUST_EXIST = 0x0010,
|
||||
wxFD_CHANGE_DIR = 0x0080,
|
||||
wxFD_PREVIEW = 0x0100,
|
||||
wxFD_MULTIPLE = 0x0200
|
||||
wxFD_MULTIPLE = 0x0200,
|
||||
wxFD_SHOW_HIDDEN = 0x0400
|
||||
};
|
||||
|
||||
#define wxFD_DEFAULT_STYLE wxFD_OPEN
|
||||
|
Reference in New Issue
Block a user