add missing attribute collector for markers symbolizer path expression - closes #1952
This commit is contained in:
parent
a295eea843
commit
482c4eb215
1 changed files with 5 additions and 0 deletions
|
@ -199,6 +199,11 @@ struct symbolizer_attributes : public boost::static_visitor<>
|
|||
{
|
||||
boost::apply_visitor(f_attr,*width_expr);
|
||||
}
|
||||
path_expression_ptr const& filename_expr = sym.get_filename();
|
||||
if (filename_expr)
|
||||
{
|
||||
path_processor_type::collect_attributes(*filename_expr,names_);
|
||||
}
|
||||
collect_transform(sym.get_image_transform());
|
||||
collect_transform(sym.get_transform());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue