diff options
Diffstat (limited to 'prototypes/multihandle/gui2Base.pas')
-rw-r--r-- | prototypes/multihandle/gui2Base.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prototypes/multihandle/gui2Base.pas b/prototypes/multihandle/gui2Base.pas index 90fcc843..1692dda0 100644 --- a/prototypes/multihandle/gui2Base.pas +++ b/prototypes/multihandle/gui2Base.pas @@ -215,7 +215,7 @@ end; procedure TWidget.EvOnMouseLeave(Sender: TObject); begin Exclude(FWidgetState, wsHasFocus); - Paint; +// Paint; end; procedure TWidget.SetColor(const AValue: TGfxColor); @@ -386,7 +386,7 @@ end; procedure TLabel.Paint; begin // Color := FParent.Canvas.GetColor; -// inherited Paint; + inherited Paint; Canvas.SetColor(colWhite); Canvas.FillRect(Rect(0,0,Width,Height)); Canvas.SetColor(colBlack); |