aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorKonstantin Ritt <ritt.ks@gmail.com>2015-12-16 02:56:08 +0400
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-12-16 08:46:42 +0000
commitac0d82ffdd4caf606aef45b0f7a9ba2e05b3cc6e (patch)
tree167f6cc3b5e910ca19fe717e87ccd3707ae03bd9 /src/imports
parent946e834578c6ca0a591324b5d5fd21e291cfca0b (diff)
UniversalTheme: Fix typo in the system font family name
Change-Id: I5eefd75677a5762fed848c1e174211abd00bafba Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports')
-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);
}