fixing proper font rendering color when using emulated bold

when the stroke width is set in macOS (emulated bold), the stroke color was not correctly set - unless text color was black
This commit is contained in:
Stefan Csomor
2018-10-22 17:43:31 +02:00
parent a69a43bc53
commit 7dfbe50fc0
2 changed files with 23 additions and 1 deletions

View File

@@ -90,6 +90,11 @@ public:
{
return CFDictionaryCreateCopy(kCFAllocatorDefault, this->m_ptr);
}
CFMutableDictionaryRef CreateMutableCopy() const
{
return CFDictionaryCreateMutableCopy(kCFAllocatorDefault, 0, this->m_ptr);
}
};
class wxCFMutableDictionaryRef : public wxCFDictionaryRefCommon<CFMutableDictionaryRef>