Win32 - UpdateHotkeyAssignments() added Save Screenshot As. However, the keys struct doesn't properly return F keys as strings.

This commit is contained in:
adelikat 2009-05-09 16:13:09 +00:00
parent d3bb120ebe
commit 1ba78a6ea3
1 changed files with 12 additions and 0 deletions

View File

@ -4018,6 +4018,18 @@ void UpdateHotkeyAssignments()
text.append("\t");
text.append(keyname);
ChangeMenuItemText(IDM_OPEN, text);
//Save Screenshot As...
GetMenuString(mainMenu,IDM_PRINTSCREEN, itemText, 255, IDM_PRINTSCREEN); //Get menu item text
text = itemText; //Store in string object
truncate = text.find("\t"); //Find the tab
if (truncate >= 1) //Truncate if it exists
text = text.substr(0,truncate);
keyname = CustomKeys.PrintScreen.key; //Get key & modifiers
keyname.insert(0,GetModifierString(CustomKeys.PrintScreen.modifiers));
text.append("\t");
text.append(keyname);
ChangeMenuItemText(IDM_PRINTSCREEN, text);
}