mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-01 03:17:36 +02:00
IDE: Allow multi-selection with Shift in Project Inspector and Package Editor. Issue #39595.
This commit is contained in:
parent
cd2ae505e3
commit
3ecdcf0320
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user