Use the degree symbol on non-Windows.

The Windows code uses a degree symbol in Latin-1, which
crashes FLTK on OS X.
This commit is contained in:
whitequark 2015-03-17 20:30:37 +03:00
parent ffd2df9494
commit 84f2a59993

View File

@ -45,7 +45,11 @@ const GraphicsWindow::MenuEntry GraphicsWindow::menu[] = {
{ 1, "Re&generate All", MNU_REGEN_ALL, ' ', mEdit },
{ 1, NULL, 0, 0, NULL },
{ 1, "Snap Selection to &Grid", MNU_SNAP_TO_GRID, '.', mEdit },
#ifdef WIN32
{ 1, "Rotate Imported &90\260", MNU_ROTATE_90, '9', mEdit },
#else
{ 1, "Rotate Imported &90°", MNU_ROTATE_90, '9', mEdit },
#endif
{ 1, NULL, 0, 0, NULL },
{ 1, "Cu&t", MNU_CUT, C|'X', mClip },
{ 1, "&Copy", MNU_COPY, C|'C', mClip },