mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Removed HelpStyle (was introduced by RetroDECK)
This commit is contained in:
parent
6846afef5e
commit
1d0fae2861
|
@ -49,10 +49,6 @@
|
||||||
#include "InputOverlay.h"
|
#include "InputOverlay.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(RETRODECK)
|
|
||||||
#include "HelpStyle.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <SDL2/SDL_events.h>
|
#include <SDL2/SDL_events.h>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
|
@ -2317,8 +2313,6 @@ void GuiMenu::openESDEConfiguration() {
|
||||||
// RetroDECK: Create a new GuiSettings instance for the ES-DE Configurations menu
|
// RetroDECK: Create a new GuiSettings instance for the ES-DE Configurations menu
|
||||||
auto s = new GuiSettings(_("ES-DE CONFIGURATIONS"));
|
auto s = new GuiSettings(_("ES-DE CONFIGURATIONS"));
|
||||||
|
|
||||||
HelpStyle style{getHelpStyle()};
|
|
||||||
|
|
||||||
// UI SETTINGS
|
// UI SETTINGS
|
||||||
ComponentListRow row;
|
ComponentListRow row;
|
||||||
row.addElement(std::make_shared<TextComponent>(_("UI SETTINGS"),
|
row.addElement(std::make_shared<TextComponent>(_("UI SETTINGS"),
|
||||||
|
|
|
@ -661,9 +661,8 @@ void GuiThemeDownloader::parseThemesList()
|
||||||
|
|
||||||
#if defined(RETRODECK)
|
#if defined(RETRODECK)
|
||||||
mWindow->pushGui(new GuiMsgBox(
|
mWindow->pushGui(new GuiMsgBox(
|
||||||
getHelpStyle(),
|
_("ES-DE THEME ENGINE WAS UPDATED UPSTREAM. THESE THEMES MAY NOT BE COMPATIBLE WITH THE CURRENT RETRODECK VERSION. "
|
||||||
_("ES-DE THEME ENGINE WAS UPDATED UPSTREAM. THESE THEMES MAY NOT BE COMPATIBLE WITH THE CURRENT RETRODECK VERSION."
|
"CHECK IF A NEW RETRODECK UPDATE IS AVAILABLE, ELSE PLEASE WAIT FOR IT OR PROCEED AT YOUR OWN RISK."),
|
||||||
"CHECK IF A NEW RETRODECK UPDATE IS AVAILABLE, ELSE PLEASE WAIT FOR IT OR PROCEED AT YOUR OWN RISK."),
|
|
||||||
_("OK"), [] { return; }, "", nullptr, "", nullptr, nullptr, true));
|
_("OK"), [] { return; }, "", nullptr, "", nullptr, nullptr, true));
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|
|
@ -293,7 +293,6 @@ void ViewController::noGamesDialog()
|
||||||
#if defined(RETRODECK)
|
#if defined(RETRODECK)
|
||||||
// Show a simple message with a "QUIT" option if RETRODECK is defined
|
// Show a simple message with a "QUIT" option if RETRODECK is defined
|
||||||
mNoGamesMessageBox = new GuiMsgBox(
|
mNoGamesMessageBox = new GuiMsgBox(
|
||||||
HelpStyle(),
|
|
||||||
mNoGamesErrorMessage + mRomDirectory,
|
mNoGamesErrorMessage + mRomDirectory,
|
||||||
_("QUIT"),
|
_("QUIT"),
|
||||||
[] {
|
[] {
|
||||||
|
|
Loading…
Reference in a new issue