Draw tool transparently if we have a mask
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
1b88201ff5
commit
ffd73a2c76
@ -1720,7 +1720,7 @@ void wxWin32Renderer::DrawToolBarButton(wxDC& dc,
|
|||||||
{
|
{
|
||||||
int xpoint = (rect.GetLeft() + rect.GetRight() + 1 - bitmap.GetWidth()) / 2;
|
int xpoint = (rect.GetLeft() + rect.GetRight() + 1 - bitmap.GetWidth()) / 2;
|
||||||
int ypoint = (rect.GetTop() + rect.GetBottom() + 1 - bitmap.GetHeight()) / 2;
|
int ypoint = (rect.GetTop() + rect.GetBottom() + 1 - bitmap.GetHeight()) / 2;
|
||||||
dc.DrawBitmap(bitmap, xpoint, ypoint);
|
dc.DrawBitmap(bitmap, xpoint, ypoint, bitmap.GetMask() != NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (style == wxTOOL_STYLE_SEPARATOR)
|
else if (style == wxTOOL_STYLE_SEPARATOR)
|
||||||
|
Loading…
Reference in New Issue
Block a user