diff options
Diffstat (limited to 'src/corelib/fpgfx.pas')
-rw-r--r-- | src/corelib/fpgfx.pas | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/corelib/fpgfx.pas b/src/corelib/fpgfx.pas index 826a45f3..6410afde 100644 --- a/src/corelib/fpgfx.pas +++ b/src/corelib/fpgfx.pas @@ -224,6 +224,8 @@ type procedure SetCaret(acanvas: TfpgCanvas; x, y, w, h: TfpgCoord); procedure UnSetCaret(acanvas: TfpgCanvas); procedure InvertCaret; + property Width: integer read FWidth; + property Height: integer read FHeight; end; var @@ -982,7 +984,7 @@ begin FCanvas := nil; FTop := 0; FLeft := 0; - FWidth := 1; + FWidth := 2; FHeight := 8; FTimer := TfpgTimer.Create(FInterval); FTimer.OnTimer := @OnTimerTime; |