Is there a way in Delphi XE2 to preserve the the InPlaceEditor's highlight in a StringGrid when the grid loses focus to another non-modal form?
My current StringGrid options are:

If not, I had hoped to use the code below to preserve a highlight of the current cell after losing focus, but am having some trouble with it leaving cells highlighted when they're no longer the current cell.
Do I need to add an "else" to the code below to change the color back to the original on non-selected cells? Any caveats?
procedure TForm1.sgMultiDrawCell(Sender: TObject; ACol, ARow: Integer; Rect: TRect; State: TGridDrawState);
begin
if (ACol = sgMulti.Col) and (ARow = sgMulti.Row) then
begin
sgMulti.Canvas.Brush.Color := clYellow;
sgMulti.Canvas.FillRect(Rect);
sgMulti.Canvas.TextRect(Rect, Rect.Left, Rect.Top, sgMulti.Cells[ACol, ARow]);
if gdFocused in State then
sgMulti.Canvas.DrawFocusRect(Rect); user
end;
end; { sgMultiDrawCell}
Edit: The screen capture below clarifies how it's behaving today. I want to current cell, when losing focus, to be more clear than the bottom screen capture


goAlwaysShowEditoroption? – user246408 Aug 12 '12 at 16:42