Skip to content
Snippets Groups Projects
Commit d208a3ac authored by ck's avatar ck
Browse files

Help plugin: Fix handling of oblique font style.

Reviewed-by: kh1
parent 576a1ee3
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,12 @@ void GeneralSettingsPage::apply()
if (currentIndex != -1)
fontStyle = m_ui.styleComboBox->itemText(currentIndex);
font.setBold(fontDatabase.bold(family, fontStyle));
font.setItalic(fontDatabase.italic(family, fontStyle));
if (fontStyle.contains(QLatin1String("Italic")))
font.setStyle(QFont::StyleItalic);
else if (fontStyle.contains(QLatin1String("Oblique")))
font.setStyle(QFont::StyleOblique);
else
font.setStyle(QFont::StyleNormal);
const int weight = fontDatabase.weight(family, fontStyle);
if (weight >= 0) // Weight < 0 asserts...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment