mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:17:57 +02:00
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:
parent
e893aa4eda
commit
e90c1c6516
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user