mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-02 18:12:43 +00:00
Fix: Initializer list, right initialisation order
This commit is contained in:
committed by
Alessandro Ranellucci
parent
eb7464ace6
commit
dd5c5eb931
@@ -6,7 +6,7 @@
|
||||
namespace Slic3r {
|
||||
|
||||
SVG::SVG(const char* filename)
|
||||
: arrows(true), filename(filename), fill("grey"), stroke("black")
|
||||
: arrows(true), fill("grey"), stroke("black"), filename(filename)
|
||||
{
|
||||
this->f = fopen(filename, "w");
|
||||
fprintf(this->f,
|
||||
|
||||
Reference in New Issue
Block a user