Using SmartSVN on my Windows machine, it is not honoring my Windows font preferences (neither font size or font face). They should be doing something like:
void GetIconTitleFont(ref string fontName, ref int fontHeight)
{
if (SystemParametersInfo(SPI_GETICONTITLELOGFONT, SizeOf(logfont), logfontf, 0)
{
fontName = lfFaceName;
fontHeight = lfHeight;
}
else
{
faceName = "Segoe UI";
fontHeight = -9 * ScreenDpiY/96;
}
}
But instead the SmartSVN gui-font is hard-coded to a really really tiny font..
