Use fractional point size when scaling fonts in wxTipDialog
Don't unnecessarily round the result to int any longer.
This commit is contained in:
@@ -213,7 +213,7 @@ wxTipDialog::wxTipDialog(wxWindow *parent,
|
|||||||
if (!isPda)
|
if (!isPda)
|
||||||
{
|
{
|
||||||
wxFont font = text->GetFont();
|
wxFont font = text->GetFont();
|
||||||
font.SetPointSize(int(1.6 * font.GetPointSize()));
|
font.SetFractionalPointSize(1.6 * font.GetFractionalPointSize());
|
||||||
font.SetWeight(wxFONTWEIGHT_BOLD);
|
font.SetWeight(wxFONTWEIGHT_BOLD);
|
||||||
text->SetFont(font);
|
text->SetFont(font);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user