From eec6e82c2958d21a43004b29a8f14b6428456229 Mon Sep 17 00:00:00 2001 From: Dario Manesku Date: Tue, 12 Aug 2014 21:30:20 +0100 Subject: [PATCH] SetWindowTitle() on Windows now changes start menu title as well. --- examples/common/entry/entry_windows.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp index 0a35fb70..772b1530 100644 --- a/examples/common/entry/entry_windows.cpp +++ b/examples/common/entry/entry_windows.cpp @@ -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()