IDE: Allow multi-selection with Shift in Project Inspector and Package Editor. Issue #39595.

This commit is contained in:
Juha 2022-01-25 10:52:23 +02:00
parent cd2ae505e3
commit 3ecdcf0320
2 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,7 @@ object ProjectInspectorForm: TProjectInspectorForm
OnDeactivate = FormDeactivate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
LCLVersion = '2.1.0.0'
LCLVersion = '2.3.0.0'
object ItemsTreeView: TTreeView
Left = 0
Height = 261
@ -25,6 +25,7 @@ object ProjectInspectorForm: TProjectInspectorForm
BorderSpacing.Top = 2
DragMode = dmAutomatic
MultiSelect = True
MultiSelectStyle = [msControlSelect, msShiftSelect, msSiblingOnly]
PopupMenu = ItemsPopupMenu
ReadOnly = True
RightClickSelect = True

View File

@ -16,7 +16,7 @@ object PackageEditorForm: TPackageEditorForm
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
LCLVersion = '2.1.0.0'
LCLVersion = '2.3.0.0'
object ToolBar: TToolBar
Left = 0
Height = 48
@ -214,6 +214,7 @@ object PackageEditorForm: TPackageEditorForm
BorderSpacing.Top = 1
DragMode = dmAutomatic
MultiSelect = True
MultiSelectStyle = [msControlSelect, msShiftSelect, msSiblingOnly]
ParentFont = False
PopupMenu = ItemsPopupMenu
ReadOnly = True