Skip to content

Commit e418451

Browse files
committed
Merge pull request #460 from fabiencastan/fix_writerPlugins
Writer plugins: fix sequence detection
2 parents 32291c1 + adc0da7 commit e418451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/tuttle/src/tuttle/plugin/context/WriterPlugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void WriterPlugin::changedParam( const OFX::InstanceChangedArgs& args, const std
4545
if( paramName == kTuttlePluginFilename )
4646
{
4747
const bfs::path filepath( _paramFilepath->getValue( ) );
48-
_isSequence = _filePattern.initFromPattern( filepath.filename().string(), sequenceParser::ePatternAll );
48+
_isSequence = _filePattern.initFromPattern( filepath.filename().string(), sequenceParser::ePatternDefault );
4949
}
5050
else if( paramName == kParamWriterRender )
5151
{

0 commit comments

Comments
 (0)