Tab->Spaces, missing spaces, typos

This commit is contained in:
ocornut
2016-07-20 11:39:38 +02:00
parent 4141144b21
commit 8efd05a148
2 changed files with 8 additions and 8 deletions

View File

@ -1654,13 +1654,13 @@ const ImWchar* ImFontAtlas::GetGlyphRangesCyrillic()
const ImWchar* ImFontAtlas::GetGlyphRangesThai()
{
static const ImWchar ranges[] =
{
0x0020, 0x00FF, //Basic Latin
0x0E00, 0x0E7F, //Thai Unicode
0,
};
return &ranges[0];
static const ImWchar ranges[] =
{
0x0020, 0x00FF, // Basic Latin
0x0E00, 0x0E7F, // Thai
0,
};
return &ranges[0];
}
//-----------------------------------------------------------------------------