summaryrefslogtreecommitdiff
path: root/src/gui/fpg_basegrid.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/fpg_basegrid.pas')
-rw-r--r--src/gui/fpg_basegrid.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/fpg_basegrid.pas b/src/gui/fpg_basegrid.pas
index eae2a576..9a29e004 100644
--- a/src/gui/fpg_basegrid.pas
+++ b/src/gui/fpg_basegrid.pas
@@ -153,7 +153,7 @@ type
property ColumnTextColor[ACol: Integer]: TfpgColor read GetColumnTextColor write SetColumnTextColor;
property VisibleRows: Integer read VisibleLines;
property TopRow: Integer read FFirstRow write SetFirstRow;
- property Options: TfpgGridOptions read FOptions write FOptions default [go_SmoothScroll];
+ property Options: TfpgGridOptions read FOptions write FOptions default [];
property OnDrawCell: TfpgDrawCellEvent read FOnDrawCell write FOnDrawCell;
property OnFocusChange: TfpgFocusChangeNotify read FOnFocusChange write FOnFocusChange;
property OnRowChange: TfpgRowChangeNotify read FOnRowChange write FOnRowChange;
@@ -1230,7 +1230,7 @@ begin
FRowSelect := False;
FScrollBarStyle := ssAutoBoth;
FUpdateCount := 0;
- FOptions := [go_SmoothScroll];
+ FOptions := [];
FFont := fpgGetFont('#Grid');
FHeaderFont := fpgGetFont('#GridHeader');