switch over to standard ascii characters for checkmark and arrow

symbols.
This commit is contained in:
casey langen 2017-07-22 00:04:04 -07:00
parent 0395c0e321
commit dd2fb485a1
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ using namespace std::placeholders;
using EntryPtr = IScrollAdapter::EntryPtr;
static const std::string arrow = "\xe2\x96\xba ";
static const std::string arrow = "> ";
static bool showDotfiles = false;
static UpdateCheck updateCheck;

View File

@ -52,7 +52,7 @@ using namespace musik::core::sdk;
using namespace musik::cube;
using namespace cursespp;
static const std::string check = "\xe2\x9c\x93";
static const std::string check = "";
struct PluginInfo {
std::string name;

View File

@ -43,7 +43,7 @@
using namespace cursespp;
#define UNCHECKED std::string("□")
#define CHECKED std::string("")
#define CHECKED std::string("")
Checkbox::Checkbox()
: Window()