mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3792 Use font 10 and 14
This commit is contained in:
parent
4d25cd0c71
commit
68bc466830
@ -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;
|
||||
|
@ -249,7 +249,9 @@ QList<caf::PdmOptionItemInfo> RiaPreferences::calculateValueOptions(const caf::P
|
||||
{
|
||||
QStringList fontSizes;
|
||||
fontSizes << "8";
|
||||
fontSizes << "10";
|
||||
fontSizes << "12";
|
||||
fontSizes << "14";
|
||||
fontSizes << "16";
|
||||
fontSizes << "24";
|
||||
fontSizes << "32";
|
||||
|
Loading…
Reference in New Issue
Block a user