ENH: update some GUI styles

jira: [STUDIO-12074]
Change-Id: I01bbf66577040d837c1768749b43500221e54fcb
(cherry picked from commit b813cb04dd438319c331d1b7ff533120bf65bd4a)
This commit is contained in:
xin.zhang
2025-05-08 16:56:43 +08:00
committed by Noisyfox
parent 56088f22d6
commit 60005def4c
4 changed files with 68 additions and 20 deletions

View File

@@ -300,7 +300,10 @@ void TextInput::render(wxDC& dc)
}
dc.SetTextForeground(wxColour(144, 144, 144));
dc.SetFont(GetFont());
wxFont font = GetFont();
font.SetPointSize(font.GetPointSize() - 1);// use smaller font
dc.SetFont(font);
dc.DrawText(static_tips, pt);
}
}