[apps/sequence] Fix "Un" size in sequence table

Change-Id: I8f46a2f6f49da08a58d8c24252cf9fa8d09d2a0e
This commit is contained in:
Léa Saviot
2018-05-15 16:29:35 +02:00
parent a84686d262
commit 16de5291bb

View File

@@ -224,7 +224,7 @@ int Sequence::numberOfElements() {
Poincare::ExpressionLayout * Sequence::nameLayout() {
if (m_nameLayout == nullptr) {
m_nameLayout = new HorizontalLayout(
new CharLayout(name()[0], KDText::FontSize::Large),
new CharLayout(name()[0], KDText::FontSize::Small),
new VerticalOffsetLayout(new CharLayout('n', KDText::FontSize::Small), VerticalOffsetLayout::Type::Subscript, false),
false);
}