Increased the font size for the 'Create new custom collection from theme' interface

This commit is contained in:
Leon Styhre 2023-10-18 21:57:02 +02:00
parent 36b6b4849c
commit f6e33db117

View file

@ -188,7 +188,7 @@ GuiCollectionSystemsOptions::GuiCollectionSystemsOptions(std::string title)
[this, name] { createCustomCollection(name); }};
row.makeAcceptInputHandler(createCollectionCall);
auto themeFolder = std::make_shared<TextComponent>(
Utils::String::toUpper(name), Font::get(FONT_SIZE_SMALL), mMenuColorPrimary);
Utils::String::toUpper(name), Font::get(FONT_SIZE_MEDIUM), mMenuColorPrimary);
themeFolder->setSelectable(true);
row.addElement(themeFolder, true);
ss->addRow(row);