Browse Source

Fix click on BGRAThemeCheckBox

lainz 5 years ago
parent
commit
ccc885a554
1 changed files with 4 additions and 2 deletions
  1. 4 2
      bgrathemecheckbox.pas

+ 4 - 2
bgrathemecheckbox.pas

@@ -109,13 +109,15 @@ begin
     FState := btbsHover
   else
     FState := btbsNormal;
-  Invalidate;
+  if ClientRect.Contains(Point(X, Y)) then
+    SetFChecked(not FChecked)
+  else
+    Invalidate;
 end;
 
 procedure TBGRAThemeCheckBox.Click;
 begin
   inherited Click;
-  SetFChecked(not FChecked);
 end;
 
 procedure TBGRAThemeCheckBox.SetEnabled(Value: boolean);