Skip to content

Commit 3d6941c

Browse files
committed
chore(menus): Downsize footer
1 parent 37eee48 commit 3d6941c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/menus/Menu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void Menu::RegeneratePage(int page, int selected)
101101
for (int i = 0; i < processedOptions[page - 1].size(); i++)
102102
stringPage += string_format("<div><font color=\"#%s\">%s%s</font></div><br/>", (i == selected ? this->color.c_str() : "ffffff"), (i == selected ? "➤&nbsp;" : "&nbsp;&nbsp;&nbsp;&nbsp;"), processedOptions[page - 1][i].first.c_str());
103103

104-
stringPage += replace(replace(g_translations->FetchTranslation("core.menu.footer"), "{PAGE}", std::to_string(page)), "{MAXPAGES}", std::to_string(processedOptions.size()));
104+
stringPage += string_format("<font class='fontSize-s'>%s</font>", replace(replace(g_translations->FetchTranslation("core.menu.footer"), "{PAGE}", std::to_string(page)), "{MAXPAGES}", std::to_string(processedOptions.size())).c_str());
105105

106106
this->generatedPages[page - 1] = stringPage;
107107
}

0 commit comments

Comments
 (0)