From 8f02bdf74f7cbd358b660adcfdcee7e4ae7631a6 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 23 Sep 2021 17:14:43 +0200 Subject: [PATCH] Added a keyboard symbol/character. --- es-app/src/views/ViewController.cpp | 2 ++ es-app/src/views/ViewController.h | 1 + 2 files changed, 3 insertions(+) diff --git a/es-app/src/views/ViewController.cpp b/es-app/src/views/ViewController.cpp index 74977005a..21e5c355d 100644 --- a/es-app/src/views/ViewController.cpp +++ b/es-app/src/views/ViewController.cpp @@ -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 diff --git a/es-app/src/views/ViewController.h b/es-app/src/views/ViewController.h index a3898e377..d2ea58c57 100644 --- a/es-app/src/views/ViewController.h +++ b/es-app/src/views/ViewController.h @@ -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: