You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When choosing a file sequence from the ImageReader node, the dialog shows no images sequences, even though one is present. If I uncheck the 'Show sequences' checkbox, select a file, then replace the digits with ####, everything works as expected.
Also, if I check the "Show hidden files" checkbox, the sequence now appears. The file sequence in question does not start with a ".".
Steps to reproduce
Start a new session.
Place an ImageReader.
Open the file chooser dialog and navigate to a location containing an image sequence.
Toggle the "Show hidden files" checkbox. The sequence should now appear.
The text was updated successfully, but these errors were encountered:
FixesGafferHQ#5810
When checking a path that has the `#` character for frame substitutions,
`HiddenFilePathFilter` would always treat it as hidden. The file with
`#` does not exist, so the Windows API would return
`INVALID_FILE_ATTRIBUTES` whose value is `-1`. `FILE_ATTRIBUTE_HIDDEN`
has a value of `2`. `-1 & 2 = 2`, so sequences would always be
considered hidden.
Version: Gaffer 1.4.0.0-windows
Third-party tools: None
Third-party modules: None
Description
When choosing a file sequence from the ImageReader node, the dialog shows no images sequences, even though one is present. If I uncheck the 'Show sequences' checkbox, select a file, then replace the digits with ####, everything works as expected.
Also, if I check the "Show hidden files" checkbox, the sequence now appears. The file sequence in question does not start with a ".".
Steps to reproduce
The text was updated successfully, but these errors were encountered: