Bug
Given the File Picker is targeting a directory which contains:
- a file with some name, e.g.
.gitignore
- a directory whose name is the start of the file's name, e.g.
.git/
When the user attempts to type the name of the file,
Then a directory separator / is automatically added: .git/, preventing the user from typing in the filename.
(The separator can be deleted, and the filename then typed in successfully, so this is mostly a nuisance.)


Source
I believe this is the 'offending' line:
|
state.file_picker_pending_name = entry.as_path().into() |
Bug
Given the
File Pickeris targeting a directory which contains:.gitignore.git/When the user attempts to type the name of the file,
Then a directory separator
/is automatically added:.git/, preventing the user from typing in the filename.(The separator can be deleted, and the filename then typed in successfully, so this is mostly a nuisance.)
Source
I believe this is the 'offending' line:
edit/src/bin/edit/draw_filepicker.rs
Line 96 in 1381d9b