mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:18:06 +02:00
Qt5,Qt6: make checkable listview check state work with mouse.
This commit is contained in:
parent
db6fe2baa9
commit
1fb8e5a099
@ -13428,7 +13428,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;
|
||||||
|
@ -13346,7 +13346,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