IDE/Options: Hide the panel of conflict shortcuts if they are absent. Merge request !435.

This commit is contained in:
n7800 2025-02-04 07:16:06 +05:00 committed by Juha
parent 42eb6a4a4d
commit a5bf264276
3 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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;

View File

@ -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 ...';