Qt5,Qt6: make checkable listview check state work with mouse.

(cherry picked from commit 1fb8e5a099)

Co-authored-by: zeljan1 <zeljko@holobit.hr>
This commit is contained in:
Željan Rikalo 2025-04-01 22:03:18 +02:00 committed by Željan Rikalo
parent e893aa4eda
commit e90c1c6516
2 changed files with 2 additions and 2 deletions

View File

@ -13500,7 +13500,7 @@ begin
if (ViewStyle >= 0) and (TCustomListView(LCLObject).ItemIndex = -1) then if (ViewStyle >= 0) and (TCustomListView(LCLObject).ItemIndex = -1) then
signalCurrentItemChanged(Item, nil); signalCurrentItemChanged(Item, nil);
end; end;
QEvent_ignore(Event); QEvent_accept(Event);
//issue #39852, uncommented works fine with Qt4 //issue #39852, uncommented works fine with Qt4
//Result := True; //Result := True;
exit; exit;

View File

@ -13418,7 +13418,7 @@ begin
if (ViewStyle >= 0) and (TCustomListView(LCLObject).ItemIndex = -1) then if (ViewStyle >= 0) and (TCustomListView(LCLObject).ItemIndex = -1) then
signalCurrentItemChanged(Item, nil); signalCurrentItemChanged(Item, nil);
end; end;
QEvent_ignore(Event); QEvent_accept(Event);
//issue #39852, uncommented works fine with Qt4 //issue #39852, uncommented works fine with Qt4
//Result := True; //Result := True;
exit; exit;