FIX: SetFocus to activeframe after next\prev tab commands

This commit is contained in:
b4rr4cuda 2008-06-19 20:24:01 +00:00
commit cc59153ad3
2 changed files with 3 additions and 1 deletions

View file

@ -966,7 +966,7 @@ begin
end
else
begin
Brush.Color := cbBackColor1.Color;
Brush.Color := cbBackColor.Color;
Font.Color := cbMarkColor.Color;
sText := 'Mark';
end;

View file

@ -591,6 +591,7 @@ with frmMain do
nbRight.PageIndex:=nbRight.PageIndex+1;
end;
end;
ActiveFrame.SetFocus;
end;
end;
@ -613,6 +614,7 @@ with frmMain do
nbRight.PageIndex:=nbRight.PageIndex-1;
end;
end;
ActiveFrame.SetFocus;
end;
end;