Don't reset URL if applying character style
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3318,7 +3318,17 @@ bool wxRichTextParagraphLayoutBox::SetStyle(const wxRichTextRange& range, const
|
|||||||
wxRichTextRemoveStyle(child->GetAttributes(), style);
|
wxRichTextRemoveStyle(child->GetAttributes(), style);
|
||||||
}
|
}
|
||||||
else if (resetExistingStyle)
|
else if (resetExistingStyle)
|
||||||
|
{
|
||||||
|
// Preserve the URL as it's not really a formatting style but a property of the object
|
||||||
|
wxString url;
|
||||||
|
if (child->GetAttributes().HasURL() && !characterAttributes.HasURL())
|
||||||
|
url = child->GetAttributes().GetURL();
|
||||||
|
|
||||||
child->GetAttributes() = characterAttributes;
|
child->GetAttributes() = characterAttributes;
|
||||||
|
|
||||||
|
if (!url.IsEmpty())
|
||||||
|
child->GetAttributes().SetURL(url);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (applyMinimal)
|
if (applyMinimal)
|
||||||
|
Reference in New Issue
Block a user