I think you need to edit smartsvn.properties
under your Application Data area (at least it is in Windows XP) and add the following two lines:
smartsvn.lookAndFeel.usePlatformIndependent=true smartsvn.ui.fontsize=14
Использование SmartSVN на моей машине с Windows не учитывает мои настройки шрифтов Windows (ни размер шрифта, ни шрифт). Они должны делать что-то вроде:
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; } }
Но вместо этого графический шрифт SmartSVN жестко запрограммирован на действительно крошечный шрифт. ,
I think you need to edit smartsvn.properties
under your Application Data area (at least it is in Windows XP) and add the following two lines:
smartsvn.lookAndFeel.usePlatformIndependent=true smartsvn.ui.fontsize=14