From 511c513035ec284f0a1fbf5e16fd03062badbb40 Mon Sep 17 00:00:00 2001 From: Jonathan Westhues Date: Sun, 3 Nov 2013 15:41:11 -0800 Subject: [PATCH] Oops, fix Style.fillColor export/import too. --- file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file.cpp b/file.cpp index 6c5d0285..f52cd4da 100644 --- a/file.cpp +++ b/file.cpp @@ -193,7 +193,7 @@ const SolveSpace::SaveTable SolveSpace::SAVED[] = { { 's', "Style.textAngle", 'f', &(SS.sv.s.textAngle) }, { 's', "Style.textOrigin", 'x', &(SS.sv.s.textOrigin) }, { 's', "Style.color", 'c', &(SS.sv.s.color) }, - { 's', "Style.fillColor", 'x', &(SS.sv.s.fillColor) }, + { 's', "Style.fillColor", 'c', &(SS.sv.s.fillColor) }, { 's', "Style.filled", 'b', &(SS.sv.s.filled) }, { 's', "Style.visible", 'b', &(SS.sv.s.visible) }, { 's', "Style.exportable", 'b', &(SS.sv.s.exportable) },