diff --git a/ApplicationCode/Application/RiaApplication.cpp b/ApplicationCode/Application/RiaApplication.cpp index af82620b22..99fc51b5e7 100644 --- a/ApplicationCode/Application/RiaApplication.cpp +++ b/ApplicationCode/Application/RiaApplication.cpp @@ -1832,10 +1832,18 @@ void RiaApplication::applyPreferences() { fontSizeType = caf::FixedAtlasFont::POINT_SIZE_8; } + else if (m_preferences->fontSizeInScene() == "10") + { + fontSizeType = caf::FixedAtlasFont::POINT_SIZE_10; + } else if (m_preferences->fontSizeInScene() == "12") { fontSizeType = caf::FixedAtlasFont::POINT_SIZE_12; } + else if (m_preferences->fontSizeInScene() == "14") + { + fontSizeType = caf::FixedAtlasFont::POINT_SIZE_14; + } else if (m_preferences->fontSizeInScene() == "16") { fontSizeType = caf::FixedAtlasFont::POINT_SIZE_16; diff --git a/ApplicationCode/Application/RiaPreferences.cpp b/ApplicationCode/Application/RiaPreferences.cpp index 5431f8f102..5970ac4386 100644 --- a/ApplicationCode/Application/RiaPreferences.cpp +++ b/ApplicationCode/Application/RiaPreferences.cpp @@ -249,7 +249,9 @@ QList RiaPreferences::calculateValueOptions(const caf::P { QStringList fontSizes; fontSizes << "8"; + fontSizes << "10"; fontSizes << "12"; + fontSizes << "14"; fontSizes << "16"; fontSizes << "24"; fontSizes << "32";