From e0887cf2d4b09a2a0dcd0a61d187fc8698429653 Mon Sep 17 00:00:00 2001 From: flb Date: Fri, 29 Jan 2021 22:28:37 +0100 Subject: [PATCH] Fixed titles not showing up --- source/main_frame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main_frame.cpp b/source/main_frame.cpp index 07a7e58..1b864d2 100644 --- a/source/main_frame.cpp +++ b/source/main_frame.cpp @@ -8,8 +8,8 @@ MainFrame::MainFrame() : TabFrame() std::string tag = getLatestTag(TAGS_INFO); if(!tag.empty() && tag != APP_VERSION) setTitle(std::string(APP_TITLE) + "menus/main_app"_i18n ); - /* else - setTitle(std::string(APP_TITLE) + "menus/main_v"_i18n + std::string(APP_VERSION)); */ + else + setTitle(std::string(APP_TITLE)); this->setIcon("romfs:/gui_icon.png"); this->setFooterText("v" + std::string(APP_VERSION));