If you activate a RepeatClick button with LMB (hold it!), then (accidentally) click and release MMB or RMB (still holding LMB!) a crash occurs leaving LMB.
My personal fix for this issue:
procedure TdxBarButtonControl.DoButtonPressTimer(Sender: TObject);
…
begin
if NeedStopTimer then
FreeAndNil(FButtonPressTimer)
else
begin
// --> Fix
if Assigned(FButtonPressTimer)then
// <–
FButtonPressTimer.Interval := cxButtonsRepeatPause;
if IsPressed and (HotPartIndex = bcpButton) then
ButtonItem.DirectClick;
end;
end;
Thank you for sharing your research results. I have reproduced this behavior and forwarded this ticket to our developers for research.