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..

link|improve this question

71% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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. Worked for me on XP

smartsvn.lookAndFeel.usePlatformIndependent=true smartsvn.ui.fontsize=14

link|improve this answer
i'm going to accept this answer without testing it. i gave up on SmartSVN because of the horrible UI. – Ian Boyd Mar 6 '11 at 1:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.