[apps] Change layout fontsize of Empty Controller

This commit is contained in:
Émilie Feral
2018-10-09 14:47:37 +02:00
parent 956e97b3fe
commit 5ecc2cbc10

View File

@@ -82,14 +82,14 @@ void VariableBoxEmptyController::setType(Type type) {
{
message = I18n::Message::EmptyExpressionBox;
char storeExpression[] = {'3', Ion::Charset::Sto, 'A', 0};
layout = LayoutHelper::String(storeExpression, sizeof(storeExpression)-1);
layout = LayoutHelper::String(storeExpression, sizeof(storeExpression)-1, KDText::FontSize::Small);
break;
}
case Type::Functions:
{
message = I18n::Message::EmptyFunctionBox;
char storeFunction[] = {'3', '+', 'x', Ion::Charset::Sto, 'f', '(', 'x', ')', 0};
layout = LayoutHelper::String(storeFunction, sizeof(storeFunction)-1);
layout = LayoutHelper::String(storeFunction, sizeof(storeFunction)-1, KDText::FontSize::Small);
break;
}
default: