From f3362d692937c0183bf3f279c340fafc6c8970ec Mon Sep 17 00:00:00 2001 From: micha Date: Mon, 3 Jul 2006 15:25:20 +0000 Subject: [PATCH] mouse capture unwantedly prevents mouse events to other controls (issue #1797 note) git-svn-id: trunk@9549 - --- lcl/include/customlistview.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/lcl/include/customlistview.inc b/lcl/include/customlistview.inc index 37b430f8e4..a77024cfbf 100644 --- a/lcl/include/customlistview.inc +++ b/lcl/include/customlistview.inc @@ -19,6 +19,7 @@ constructor TCustomListView.Create(AOwner: TComponent); begin inherited Create(AOwner); + ControlStyle := ControlStyle - [csCaptureMouse]; FColumns := TListColumns.Create(self); FListItems := TListItems.Create(self); BorderStyle := bsSingle;