SetWindowTitle() on Windows now changes start menu title as well.

This commit is contained in:
Dario Manesku 2014-08-12 21:30:20 +01:00
parent 2701efa60a
commit eec6e82c29

View file

@ -637,6 +637,7 @@ namespace entry
void setWindowTitle(const char* _title)
{
SetWindowTextA(s_ctx.m_hwnd, _title);
SetWindowTextA(GetWindow(s_ctx.m_hwnd, GW_HWNDNEXT), _title);
}
void toggleWindowFrame()