Browse Source

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

Dario Manesku 11 years ago
parent
commit
eec6e82c29
1 changed files with 1 additions and 0 deletions
  1. 1 0
      examples/common/entry/entry_windows.cpp

+ 1 - 0
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()