aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/imports/controls/universal/qquickuniversaltheme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/controls/universal/qquickuniversaltheme.cpp b/src/imports/controls/universal/qquickuniversaltheme.cpp
index ada6da32..676af1b9 100644
--- a/src/imports/controls/universal/qquickuniversaltheme.cpp
+++ b/src/imports/controls/universal/qquickuniversaltheme.cpp
@@ -43,11 +43,11 @@ QT_BEGIN_NAMESPACE
QQuickUniversalTheme::QQuickUniversalTheme(QPlatformTheme *theme)
: QQuickProxyTheme(theme)
{
- systemFont = QFont(QLatin1Literal("Sege UI"));
+ systemFont = QFont(QLatin1Literal("Segoe UI"));
systemFont.setPixelSize(15);
groupBoxTitleFont = systemFont;
groupBoxTitleFont.setWeight(QFont::DemiBold);
- tabButtonFont = QFont(QLatin1Literal("Sege UI"));
+ tabButtonFont = QFont(QLatin1Literal("Segoe UI"));
tabButtonFont.setPixelSize(24);
tabButtonFont.setWeight(QFont::Light);
}