From 3d4acf662c46dac6403641d8f7bf9238f1d33fe8 Mon Sep 17 00:00:00 2001 From: mattias Date: Mon, 7 May 2018 18:16:02 +0000 Subject: [PATCH] IDE: ObjectInspector: Fixed SHIFT click to select a range doesnt work. Issue #33383. Patch by Rik van Kekem git-svn-id: branches/fixes_1_8@57811 - --- components/ideintf/componenttreeview.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/components/ideintf/componenttreeview.pas b/components/ideintf/componenttreeview.pas index 726838915b..2bc0991dc1 100644 --- a/components/ideintf/componenttreeview.pas +++ b/components/ideintf/componenttreeview.pas @@ -590,6 +590,7 @@ begin DragMode := dmAutomatic; FComponentList:=TBackupComponentList.Create; Options := Options + [tvoAllowMultiselect, tvoAutoItemHeight, tvoKeepCollapsedNodes, tvoReadOnly]; + MultiSelectStyle := MultiSelectStyle + [msShiftSelect]; FImageList := TImageList.Create(nil); FImageList.Width := TIDEImages.ScaledSize; FImageList.Height := TIDEImages.ScaledSize;