summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-02-21 13:16:04 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-02-21 13:16:04 +0200
commit6b988f73cace8232ec5e857fa7977d0bde9454bb (patch)
treead7309c33100b00682978c75f2f0e95f73d5c448
parent0be503e7108d81fb28bbb748f785b6fd9c9de56a (diff)
downloadfpGUI-6b988f73cace8232ec5e857fa7977d0bde9454bb.tar.xz
fpg_edit: setting NegativeColor property at runtime never caused an repaint.
-rw-r--r--src/gui/fpg_edit.pas1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/fpg_edit.pas b/src/gui/fpg_edit.pas
index 9c96f489..60632215 100644
--- a/src/gui/fpg_edit.pas
+++ b/src/gui/fpg_edit.pas
@@ -1671,6 +1671,7 @@ begin
if FNegativeColor=AValue then exit;
FNegativeColor:=AValue;
FormatEdit;
+ Repaint;
end;
procedure TfpgBaseNumericEdit.SetThousandSeparator(const AValue: TfpgChar);