This commit is contained in:
varada%netscape.com 1999-12-01 23:09:55 +00:00
Родитель d7247583e0
Коммит c98057da22
2 изменённых файлов: 7 добавлений и 2 удалений

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

@ -38,7 +38,7 @@ Height=56
[Widget 696]
Type=GroupBox
Type=BoldGroup
Name=GroupBox167
Value=Installer Types
Start_x=3

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

@ -694,7 +694,7 @@ void CWizardUI::CreateControls()
rv = ((CComboBox*)curWidget->control)->Create(CBS_DROPDOWNLIST | WS_TABSTOP, tmpRect, this, ID);
}
else if (widgetType == "GroupBox") {
else if ((widgetType == "GroupBox") || (widgetType == "BoldGroup")) {
curWidget->control = new CButton;
rv = ((CButton*)curWidget->control)->Create(curWidget->value, BS_GROUPBOX, tmpRect, this, ID);
}
@ -716,6 +716,11 @@ void CWizardUI::CreateControls()
{
curWidget->control->SetFont(m_pNavFont);
}
else if (curWidget->type == "BoldGroup")
{
curWidget->control->SetFont(m_pNavFont);
}
else if (curWidget->control && curWidget->control->m_hWnd)
{
curWidget->control->SetFont(m_pFont);