diff --git a/src/common/fontcmn.cpp b/src/common/fontcmn.cpp index b850783b69..da8e05d239 100644 --- a/src/common/fontcmn.cpp +++ b/src/common/fontcmn.cpp @@ -981,6 +981,11 @@ bool wxNativeFontInfo::FromUserString(const wxString& s) { SetStrikethrough(true); } + else if ( token == wxT("underlinedstrikethrough") ) + { + SetUnderlined(true); + SetStrikethrough(true); + } else if ( token == wxT("light") || token == _("light") ) { SetWeight(wxFONTWEIGHT_LIGHT);