mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 17:17:52 +02:00
IDE/Options: Hide the panel of conflict shortcuts if they are absent. Merge request !435.
This commit is contained in:
parent
42eb6a4a4d
commit
a5bf264276
@ -217,6 +217,7 @@ object EditorKeymappingOptionsFrame: TEditorKeymappingOptionsFrame
|
||||
Width = 459
|
||||
Align = alBottom
|
||||
ResizeAnchor = akBottom
|
||||
Visible = False
|
||||
OnMoved = KeyMapSplitterMoved
|
||||
end
|
||||
object ConflictsTreeView: TTreeView
|
||||
@ -232,6 +233,7 @@ object EditorKeymappingOptionsFrame: TEditorKeymappingOptionsFrame
|
||||
RowSelect = True
|
||||
ScrollBars = ssAutoBoth
|
||||
TabOrder = 0
|
||||
Visible = False
|
||||
Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoRightClickSelect, tvoRowSelect, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
|
||||
OnMouseDown = ConflictsTreeViewMouseDown
|
||||
end
|
||||
|
@ -709,8 +709,8 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
if ConflictsTreeView.Items.Count=0 then
|
||||
ConflictsTreeView.Items.Add(nil, lisThereAreNoConflictingKeys);
|
||||
ConflictsTreeView.Visible:=ConflictsTreeView.Items.Count<>0;
|
||||
KeyMapSplitter.Visible:=ConflictsTreeView.Visible;
|
||||
|
||||
ConflictsTreeView.EndUpdate;
|
||||
end;
|
||||
|
@ -3009,7 +3009,6 @@ resourcestring
|
||||
+'%s%sRemove the old assignment and assign the key to the new function %s?';
|
||||
lisAlternativeKeyOr2KeySequence = 'Alternative key (or 2 key sequence)';
|
||||
srkmConflic = 'Conflict ';
|
||||
lisThereAreNoConflictingKeys = 'There are no conflicting keys.';
|
||||
srkmEditForCmd = 'Edit keys of command';
|
||||
lisChooseAKey = 'Choose a key ...';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user