Opened 15 years ago
Closed 15 years ago
#978 closed defect (fixed)
wxGUI: files without extensions are not visible in file dialogs
Reported by: | msieczka | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 6.4.0 |
Component: | wxGUI | Version: | svn-releasebranch64 |
Keywords: | Cc: | ||
CPU: | All | Platform: | All |
Description
Files which do not have an extension are not visible in file dialogs.
- touch test
- try to locate file 'test' using a GRASS wxGUI dialog
Change History (5)
follow-up: 2 comment:1 by , 15 years ago
follow-up: 3 comment:2 by , 15 years ago
Replying to hamish:
I don't know where this is defined in the code source,
The code uses wx.lib.filebrowsebutton, which uses *.* as the default value for its fileMask parameter.
but in my eyes there should be the possibility to "show all files", so looking for * and not *.*, maybe even replacing *.* by *
Try filebrowse.FileBrowseButton(..., fileMask = '*')
follow-ups: 4 5 comment:3 by , 15 years ago
Replying to glynn:
Replying to hamish:
I don't know where this is defined in the code source,
The code uses wx.lib.filebrowsebutton, which uses *.* as the default value for its fileMask parameter.
but in my eyes there should be the possibility to "show all files", so looking for * and not *.*, maybe even replacing *.* by *
Try
filebrowse.FileBrowseButton(..., fileMask = '*')
Fixed in #41284. Can this be backported to deb6 and rel6 ?
Moritz
comment:4 by , 15 years ago
comment:5 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Replying to mlennert:
Replying to glynn:
Replying to hamish:
I don't know where this is defined in the code source,
The code uses wx.lib.filebrowsebutton, which uses *.* as the default value for its fileMask parameter.
but in my eyes there should be the possibility to "show all files", so looking for * and not *.*, maybe even replacing *.* by *
Try
filebrowse.FileBrowseButton(..., fileMask = '*')
Fixed in #41284. Can this be backported to deb6 and rel6 ?
Moritz writes: