Commit 5966caff authored by twanvl's avatar twanvl

No age is Age(0), so we don't refresh symbols all the time

parent 4d562f20
...@@ -169,7 +169,7 @@ SCRIPT_FUNCTION(symbol_variation) { ...@@ -169,7 +169,7 @@ SCRIPT_FUNCTION(symbol_variation) {
} else { } else {
throw ScriptError(_("Unknown fill type for symbol_variation: ") + fill_type); throw ScriptError(_("Unknown fill type for symbol_variation: ") + fill_type);
} }
return new_intrusive4<SymbolToImage>(value, filename, value ? value->last_update : Age(), var); return new_intrusive4<SymbolToImage>(value, filename, value ? value->last_update : Age(0), var);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment