File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3861,9 +3861,13 @@ if (!g_bTrimHooks)
3861
3861
3862
3862
// right-click on the start button - open the context menu (Settings, Help, Exit)
3863
3863
HMENU menu=CreatePopupMenu ();
3864
- CString title =LoadStringEx (IDS_MENU_TITLE);
3865
- if (!title .IsEmpty ())
3864
+ CString titleFmt =LoadStringEx (IDS_MENU_TITLE);
3865
+ if (!titleFmt .IsEmpty ())
3866
3866
{
3867
+ CString title;
3868
+ DWORD ver=GetVersionEx (g_Instance);
3869
+ title.Format (titleFmt,ver>>24 ,(ver>>16 )&0xFF ,ver&0xFFFF );
3870
+
3867
3871
AppendMenu (menu,MF_STRING,0 ,title);
3868
3872
EnableMenuItem (menu,0 ,MF_BYPOSITION|MF_DISABLED);
3869
3873
SetMenuDefaultItem (menu,0 ,TRUE );
Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ BEGIN
427
427
IDS_SKIN_ERR_LOAD_FILE "Failed to load the variation skin file %s.\r\n"
428
428
IDS_SKIN_ERR_LOAD "Error loading %s\n%s"
429
429
IDS_SKIN_ERR_VERSION "The selected skin is not compatible with this version of the start menu.\r\n"
430
- IDS_MENU_TITLE "== Open-Shell Menu == "
430
+ IDS_MENU_TITLE "Open-Shell Menu %d.%d.%d "
431
431
IDS_DEFAULT_SKIN "<No Skin>"
432
432
IDS_CONTROLS_SETTINGS "Controls"
433
433
IDS_OPEN_NOTHING "Nothing"
You can’t perform that action at this time.
0 commit comments