1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

WindowServer+LibGUI+FontEditor: Encode special characters as UTF-8

This commit is contained in:
Sergey Bugaev 2019-09-04 23:50:40 +03:00 committed by Andreas Kling
parent 84bc6a92a7
commit 22e6978c71
5 changed files with 17 additions and 7 deletions

View file

@ -56,7 +56,7 @@ WSWindowManager::WSWindowManager()
{ "/bin/SystemMonitor", "Open SystemMonitor...", "/res/icons/16x16/app-system-monitor.png" }
};
u8 system_menu_name[] = { 0xf8, 0 };
u8 system_menu_name[] = { 0xc3, 0xb8, 0 };
m_system_menu = make<WSMenu>(nullptr, -1, String((const char*)system_menu_name));
int appIndex = 1;