From f6e33db117a3b708c2b2788b2b9d52642e946e0e Mon Sep 17 00:00:00 2001 From: Leon Styhre <leon@leonstyhre.com> Date: Wed, 18 Oct 2023 21:57:02 +0200 Subject: [PATCH] Increased the font size for the 'Create new custom collection from theme' interface --- es-app/src/guis/GuiCollectionSystemsOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiCollectionSystemsOptions.cpp b/es-app/src/guis/GuiCollectionSystemsOptions.cpp index 14797f808..675ebe266 100644 --- a/es-app/src/guis/GuiCollectionSystemsOptions.cpp +++ b/es-app/src/guis/GuiCollectionSystemsOptions.cpp @@ -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);