Bug #238829 --> use a slightly smaller font for the welcome screen for the thunderbird installer

to prevent the welcome text from getting truncated. Our product name is just too long :)
This commit is contained in:
scott%scott-macgregor.org 2004-03-26 22:48:33 +00:00
Родитель 54e8bc7730
Коммит ab7850bd80
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -205,7 +205,13 @@ void InitSequence(HINSTANCE hInstance)
// Create the Font for Intro/End page headers.
#ifdef MOZ_THUNDERBIRD
// The title text "Welcome to Mozilla Thunderbird" is too large to fit on the screen with a 14 pt
// font. For now, use a 12 pt font to prevent the text from getting clipped because it is too big.
sgInstallGui.welcomeTitleFont = MakeFont(TEXT("Trebuchet MS Bold"), 12, FW_BOLD);
#else
sgInstallGui.welcomeTitleFont = MakeFont(TEXT("Trebuchet MS Bold"), 14, FW_BOLD);
#endif
// Start the Wizard.
PropertySheet(&psh);