DBG: Dialogs, don't give help related commands to IDE. They will be ignored

git-svn-id: trunk@37697 -
This commit is contained in:
martin 2012-06-19 23:41:45 +00:00
parent 068e7f8d17
commit 5416ac2ed8

View File

@ -455,7 +455,8 @@ var
begin
Command := EditorOpts.KeyMap.TranslateKey(Key,Shift,TDebuggerDlg);
if Assigned(OnProcessCommand) and (Command <> ecNone)
if Assigned(OnProcessCommand) and (Command <> ecNone) and
(Command <> ecContextHelp) and(Command <> ecEditContextHelp)
then begin
OnProcessCommand(Self,Command,Handled);
Key := 0;