mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 15:45:38 +00:00
Added a keyboard symbol/character.
This commit is contained in:
parent
ed7843e898
commit
8f02bdf74f
|
@ -45,6 +45,7 @@ const std::string ViewController::FAVORITE_CHAR = Utils::String::wideStringToStr
|
|||
const std::string ViewController::FILTER_CHAR = Utils::String::wideStringToString(L"\uf0b0");
|
||||
const std::string ViewController::FOLDER_CHAR = Utils::String::wideStringToString(L"\uf07C");
|
||||
const std::string ViewController::GEAR_CHAR = Utils::String::wideStringToString(L"\uf013");
|
||||
const std::string ViewController::KEYBOARD_CHAR = Utils::String::wideStringToString(L"\uf11c");
|
||||
const std::string ViewController::TICKMARK_CHAR = Utils::String::wideStringToString(L"\uf14A");
|
||||
#else
|
||||
const std::string ViewController::CONTROLLER_CHAR = "\uf11b";
|
||||
|
@ -54,6 +55,7 @@ const std::string ViewController::FAVORITE_CHAR = "\uf005";
|
|||
const std::string ViewController::FILTER_CHAR = "\uf0b0";
|
||||
const std::string ViewController::FOLDER_CHAR = "\uf07C";
|
||||
const std::string ViewController::GEAR_CHAR = "\uf013";
|
||||
const std::string ViewController::KEYBOARD_CHAR = "\uf11c";
|
||||
const std::string ViewController::TICKMARK_CHAR = "\uf14a";
|
||||
#endif
|
||||
|
||||
|
|
|
@ -130,6 +130,7 @@ public:
|
|||
static const std::string FILTER_CHAR;
|
||||
static const std::string FOLDER_CHAR;
|
||||
static const std::string GEAR_CHAR;
|
||||
static const std::string KEYBOARD_CHAR;
|
||||
static const std::string TICKMARK_CHAR;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue