diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-08-17 16:48:50 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-08-17 16:48:50 +0200 |
commit | 6b722c1da231087c637f566a140ce3f49de2ae3f (patch) | |
tree | d915b30035c672dc87ef13a0bbd703bc11b0c517 /src/corelib | |
parent | 99911192db9c3a10c0ca2b43d34fd7343d70be76 (diff) | |
download | fpGUI-6b722c1da231087c637f566a140ce3f49de2ae3f.tar.xz |
TfpgCaret doesn't need it's timer enabled at creation.
Now the internal blink timer only gets activating when a Canvas is assigned.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/fpg_main.pas | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/corelib/fpg_main.pas b/src/corelib/fpg_main.pas index 20e13ba0..1a4a2db9 100644 --- a/src/corelib/fpg_main.pas +++ b/src/corelib/fpg_main.pas @@ -2341,7 +2341,6 @@ begin FHeight := 8; FTimer := TfpgTimer.Create(FInterval); FTimer.OnTimer := @OnTimerTime; - FTimer.Enabled := True; end; destructor TfpgCaret.Destroy; |