[UI] Fixed incorrect characters range in ImGUI

This commit is contained in:
Radosław Gliński 2024-04-06 19:12:32 +02:00 committed by GitHub
parent 122f58c9dd
commit 06d7a5f0a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ void ImGuiDrawer::SetupNotificationTextures() {
static const ImWchar font_glyph_ranges[] = { static const ImWchar font_glyph_ranges[] = {
0x0020, 0x00FF, // Basic Latin + Latin Supplement 0x0020, 0x00FF, // Basic Latin + Latin Supplement
0x0370, 0x03FF, // Greek 0x0370, 0x03FF, // Greek
0x0400, 0x044F, // Cyrillic 0x0400, 0x04FF, // Cyrillic
0x2000, 0x206F, // General Punctuation 0x2000, 0x206F, // General Punctuation
0, 0,
}; };