Index: scribus/prefsmanager.cpp =================================================================== --- scribus/prefsmanager.cpp (Revision 26493) +++ scribus/prefsmanager.cpp (Arbeitskopie) @@ -2173,12 +2173,9 @@ } appPrefs.guidesPrefs.gridType = dc.attribute("GridType", "0").toInt(); appPrefs.guidesPrefs.gridShown = static_cast(dc.attribute("ShowGrid", "0").toInt()); - if (dc.hasAttribute("GuideC")) - appPrefs.guidesPrefs.guideColor = QColor(dc.attribute("GuideC")); - if (dc.hasAttribute("GuideZ")) - appPrefs.guidesPrefs.guideRad = ScCLocale::toDoubleC(dc.attribute("ObjectToGuideSnapRadius"), 10.0); - if (dc.hasAttribute("BaseC")) - appPrefs.guidesPrefs.baselineGridColor = QColor(dc.attribute("BaselineGridColor")); + appPrefs.guidesPrefs.guideColor = QColor(dc.attribute("GuidesColor", "#000080")); + appPrefs.guidesPrefs.guideRad = ScCLocale::toDoubleC(dc.attribute("ObjectToGuideSnapRadius"), 10.0); + appPrefs.guidesPrefs.baselineGridColor = QColor(dc.attribute("BaselineGridColor", "#c0c0c0")); appPrefs.guidesPrefs.marginColor = QColor(dc.attribute("MarginColor", "#0000ff")); appPrefs.guidesPrefs.valueBaselineGrid = ScCLocale::toDoubleC(dc.attribute("BaselineGridDistance"), 12.0); appPrefs.guidesPrefs.offsetBaselineGrid = ScCLocale::toDoubleC(dc.attribute("BaselineGridOffset"), 0.0);