mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-05 17:46:30 +02:00
Debug Theme for OSX
This commit is contained in:
parent
617f2b01b2
commit
40bff19d8c
1 changed files with 5 additions and 0 deletions
|
@ -171,6 +171,10 @@ wxMask *Theme::RoundedMask(std::uint32_t width, std::uint8_t corner) {
|
|||
wxBitmap b(width, width, 1);
|
||||
wxMemoryDC dc;
|
||||
dc.SelectObject(b);
|
||||
#ifdef __APPLE__
|
||||
wxGraphicsContext* gc = dc.GetGraphicsContext();
|
||||
gc->SetAntialiasMode(wxANTIALIAS_NONE);
|
||||
#endif
|
||||
dc.SetPen(*wxBLACK_PEN);
|
||||
dc.SetBrush(*wxBLACK_BRUSH);
|
||||
dc.DrawRectangle(0, 0, width, width);
|
||||
|
@ -193,5 +197,6 @@ wxMask *Theme::RoundedMask(std::uint32_t width, std::uint8_t corner) {
|
|||
dc.DrawRectangle(0, 0, width / 2, width);
|
||||
dc.DrawRectangle(0, 0, width, width / 2);
|
||||
}
|
||||
dc.SelectObject(wxNullBitmap); // Required on OSX to unbind the wxBitmap
|
||||
return (new wxMask(b));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue