notcurses-info: be boring but reliable wrt glyphs

pull/1859/head
nick black 3 years ago
parent a21113a66a
commit 0d2ed04c1a
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -6,11 +6,16 @@
static inline wchar_t
capboolbool(unsigned utf8, bool cap){
if(utf8){
// FIXME these fancy glyphs aren't reliable enough yet (they're not
// usually present on the linux console, for instance) for such an
// essential, must-work-everywhere tool.
/*if(utf8){
return cap ? L'' : L'';
}else{
return cap ? '+' : '-';
}
}*/
(void)utf8;
return cap ? '+' : '-';
}
static void

Loading…
Cancel
Save