diff options
Diffstat (limited to 'src/gui/gui_label.pas')
-rw-r--r-- | src/gui/gui_label.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui_label.pas b/src/gui/gui_label.pas index 4f877792..85caadda 100644 --- a/src/gui/gui_label.pas +++ b/src/gui/gui_label.pas @@ -104,7 +104,7 @@ end; procedure TfpgLabel.SetBackgroundColor(const AValue: TfpgColor); begin if FBackgroundColor = AValue then - Exit; + Exit; //==> FBackgroundColor := AValue; RePaint; end; @@ -121,7 +121,7 @@ end; procedure TfpgLabel.SetText(const AValue: string); begin if FText = AValue then - Exit; + Exit; //==> FText := AValue; if FAutoSize then ResizeLabel; |