allow larger font sizes for exotic monitor configurations (#1695)

This can be still improved depending on the monitors dpi and select automatically a font that fits best to the dpi.
liquid_container
Maikel de Vries 2016-03-04 21:07:42 +01:00
parent 4465236d1b
commit 5acf34c2ba
1 changed files with 4 additions and 0 deletions

View File

@ -1339,6 +1339,10 @@ void C4StartupOptionsDlg::OnFontSizeComboFill(C4GUI::ComboBox_FillCB *pFiller)
pFiller->AddEntry("16", 16);
pFiller->AddEntry("18", 18);
pFiller->AddEntry("20", 20);
pFiller->AddEntry("22", 22);
pFiller->AddEntry("24", 24);
pFiller->AddEntry("26", 26);
pFiller->AddEntry("28", 28);
}
bool C4StartupOptionsDlg::OnFontComboSelChange(C4GUI::ComboBox *pForCombo, int32_t idNewSelection)