CVS commit by cullmann: remember indentation markers, default setting: off M +10 -10 kateconfig.cpp 1.74 --- kdelibs/kate/part/kateconfig.cpp #1.73:1.74 @@ -1062,5 +1062,5 @@ void KateRendererConfig::readConfig (KCo setWordWrapMarker (config->readBoolEntry("Word Wrap Marker", false )); -// setShowIndentationLines (config->readBoolEntry( "Show Indentation Lines", true)); + setShowIndentationLines (config->readBoolEntry( "Show Indentation Lines", false)); configEnd (); @@ -1071,7 +1071,7 @@ void KateRendererConfig::writeConfig (KC config->writeEntry ("Schema", KateFactory::self()->schemaManager()->name(schema())); - config->writeEntry( "Word Wrap Marker", wordWrapMarker() ); + config->writeEntry("Word Wrap Marker", wordWrapMarker() ); -// config->writeEntry("Show Indentation Lines", showIndentationLines()); + config->writeEntry("Show Indentation Lines", showIndentationLines()); }