IDE: adjust size of restriction browser to fit filter speed buttons, patch by Don Siders, issue #40235

This commit is contained in:
Maxim Ganetsky 2023-04-27 19:55:45 +03:00
parent 405b9d2a29
commit 711d5765fd
2 changed files with 9 additions and 7 deletions

View File

@ -7,7 +7,6 @@ object RestrictionBrowserView: TRestrictionBrowserView
ClientHeight = 405
ClientWidth = 674
OnCreate = FormCreate
LCLVersion = '2.1.0.0'
object IssueMemo: TMemo
Left = 323
Height = 393
@ -40,23 +39,23 @@ object RestrictionBrowserView: TRestrictionBrowserView
Align = alTop
BorderSpacing.Bottom = 6
Caption = 'IssueFilterGroupBox'
ClientHeight = 77
ClientHeight = 76
ClientWidth = 302
TabOrder = 0
object NameLabel: TLabel
Left = 10
Height = 17
Height = 15
Top = 44
Width = 77
Width = 60
Caption = 'NameLabel'
ParentColor = False
end
object FilterEdit: TTreeFilterEdit
AnchorSideLeft.Control = NameLabel
AnchorSideLeft.Side = asrBottom
Left = 93
Height = 27
Top = 41
Left = 76
Height = 23
Top = 40
Width = 156
ButtonWidth = 23
BorderSpacing.Left = 6
@ -81,6 +80,7 @@ object RestrictionBrowserView: TRestrictionBrowserView
ScrollBars = ssAutoBoth
ShowButtons = False
ShowLines = False
ShowSeparators = False
TabOrder = 1
OnSelectionChanged = IssueTreeViewSelectionChanged
Options = [tvoAutoItemHeight, tvoKeepCollapsedNodes, tvoReadOnly, tvoRightClickSelect, tvoRowSelect, tvoShowRoot, tvoToolTips, tvoThemedDraw]

View File

@ -111,6 +111,8 @@ begin
Inc(X, Width);
end;
end;
Panel1.Width := X + 14; // add left offset + padding
Width := 2*Panel1.Width + Splitter1.Width; // make panel and memo sizes symmetric
FilterEdit.OnAfterFilter := @SelectFirstVisible;
UpdateIssueList;
end;