Exported SVG files should have namespace info

The SVG files exported by Carbide Create (build 621) do not render in Firefox. This is because they are missing namespace information.

Currently, SVG files start like this:
<svg width="1848px" height="864px">

Starting like this allows them to render in Firefox:
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1848px" height="864px">

1 Like

I just checked, and adding the info does not interfere with Import in Carbide Create.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.