mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-08 06:35:59 +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
|
OnDeactivate = FormDeactivate
|
||||||
OnDestroy = FormDestroy
|
OnDestroy = FormDestroy
|
||||||
OnDropFiles = FormDropFiles
|
OnDropFiles = FormDropFiles
|
||||||
LCLVersion = '2.1.0.0'
|
LCLVersion = '2.3.0.0'
|
||||||
object ItemsTreeView: TTreeView
|
object ItemsTreeView: TTreeView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 261
|
Height = 261
|
||||||
@ -25,6 +25,7 @@ object ProjectInspectorForm: TProjectInspectorForm
|
|||||||
BorderSpacing.Top = 2
|
BorderSpacing.Top = 2
|
||||||
DragMode = dmAutomatic
|
DragMode = dmAutomatic
|
||||||
MultiSelect = True
|
MultiSelect = True
|
||||||
|
MultiSelectStyle = [msControlSelect, msShiftSelect, msSiblingOnly]
|
||||||
PopupMenu = ItemsPopupMenu
|
PopupMenu = ItemsPopupMenu
|
||||||
ReadOnly = True
|
ReadOnly = True
|
||||||
RightClickSelect = True
|
RightClickSelect = True
|
||||||
|
@ -16,7 +16,7 @@ object PackageEditorForm: TPackageEditorForm
|
|||||||
OnCreate = FormCreate
|
OnCreate = FormCreate
|
||||||
OnDestroy = FormDestroy
|
OnDestroy = FormDestroy
|
||||||
OnDropFiles = FormDropFiles
|
OnDropFiles = FormDropFiles
|
||||||
LCLVersion = '2.1.0.0'
|
LCLVersion = '2.3.0.0'
|
||||||
object ToolBar: TToolBar
|
object ToolBar: TToolBar
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 48
|
Height = 48
|
||||||
@ -214,6 +214,7 @@ object PackageEditorForm: TPackageEditorForm
|
|||||||
BorderSpacing.Top = 1
|
BorderSpacing.Top = 1
|
||||||
DragMode = dmAutomatic
|
DragMode = dmAutomatic
|
||||||
MultiSelect = True
|
MultiSelect = True
|
||||||
|
MultiSelectStyle = [msControlSelect, msShiftSelect, msSiblingOnly]
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
PopupMenu = ItemsPopupMenu
|
PopupMenu = ItemsPopupMenu
|
||||||
ReadOnly = True
|
ReadOnly = True
|
||||||
|
Loading…
Reference in New Issue
Block a user