diff --git a/PowerEditor/src/Parameters.cpp b/PowerEditor/src/Parameters.cpp index 05ef506f3..df96583a0 100644 --- a/PowerEditor/src/Parameters.cpp +++ b/PowerEditor/src/Parameters.cpp @@ -5528,6 +5528,10 @@ void NppParameters::feedGUIParameters(TiXmlNode *node) val = element->Attribute(TEXT("customColorEdge"), &i); if (val) _nppGUI._darkmode._customColors.edge = i; + + val = element->Attribute(TEXT("customColorLinkText"), &i); + if (val) + _nppGUI._darkmode._customColors.linkText = i; } } } @@ -6580,6 +6584,7 @@ void NppParameters::createXmlTreeFromGUIParams() GUIConfigElement->SetAttribute(TEXT("customColorDarkText"), _nppGUI._darkmode._customColors.darkerText); GUIConfigElement->SetAttribute(TEXT("customColorDisabledText"), _nppGUI._darkmode._customColors.disabledText); GUIConfigElement->SetAttribute(TEXT("customColorEdge"), _nppGUI._darkmode._customColors.edge); + GUIConfigElement->SetAttribute(TEXT("customColorLinkText"), _nppGUI._darkmode._customColors.linkText); } //