lhelp: backspace to jump back in history

git-svn-id: trunk@37978 -
This commit is contained in:
mattias 2012-07-20 09:55:50 +00:00
parent e5c4619d8e
commit b84a374cdb

View File

@ -237,6 +237,9 @@ procedure THelpForm.FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState
begin
if Key = VK_ESCAPE then
Close;
// Backspace: go to previous page (as if BackBttn were clicked)
if Key = VK_BACK then
if Assigned(ActivePage) then ActivePage.ContentProvider.GoBack;
end;
procedure THelpForm.FormShow(Sender: TObject);