MaiXinRong vor 5 Jahren
Ursprung
Commit
0a711f0730
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      Frames/BGLFme.pas

+ 1 - 1
Frames/BGLFme.pas

@@ -293,7 +293,7 @@ end;
 procedure TBGLFrame.zaBGLGridCellCanEdit(Sender: TObject;
   const ACoord: TPoint; var Allow: Boolean);
 begin
-  if _IsCloud and Allow and ACoord.Y < FBGLData.cdsBGLView.RecordCount then
+  if _IsCloud and Allow and (ACoord.Y <= FBGLData.cdsBGLView.RecordCount) then
     Allow := FBGLData.GetBGLCanEdit(ACoord.Y - zgBGL.FixedRowCount);
 end;