* Found better enter symbol, the Konatu font has it all (really, you must have

seen that collection of arrows ;-))
* A test under R5 made it clear that our fonts (not Konatu) indeed doesn't have
  arrows, like many other fonts have. We should think about adding font overlays
  like it's done in Dano - does anyone know a good free font for symbols that
  isn't as thorough as the Konatu font?


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17004 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-04-04 11:51:32 +00:00
parent bd780d9935
commit 40b478baec
+3 -3
View File
@@ -794,6 +794,8 @@ BMenuItem::DrawSubmenuSymbol(rgb_color bgColor)
void
BMenuItem::_DrawControlChar(char shortcut, BPoint where)
{
// TODO: If needed, take another font for the control characters
// (or have font overlays in the app_server!)
const char* symbol = " ";
switch (shortcut) {
@@ -810,9 +812,7 @@ BMenuItem::_DrawControlChar(char shortcut, BPoint where)
symbol = "\xe2\x86\x92";
break;
case B_ENTER:
// TODO: find a better one for this!
// If needed, take another font for the control characters
symbol = "\xe2\x86\x99";
symbol = "\xe2\x86\xb5";
break;
}