mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 07:49:27 +02:00
Object Inspector: Prevent component-tree hiding the component-values pane. Issue #34562
git-svn-id: branches/fixes_2_0@60164 -
This commit is contained in:
parent
9ec87568da
commit
3aa1981e3b
@ -622,6 +622,7 @@ type
|
||||
CompFilterEdit: TTreeFilterEdit;
|
||||
PnlClient: TPanel;
|
||||
StatusBar: TStatusBar;
|
||||
procedure FormResize(Sender: TObject);
|
||||
procedure MainPopupMenuClose(Sender: TObject);
|
||||
procedure MainPopupMenuPopup(Sender: TObject);
|
||||
procedure AvailComboBoxCloseUp(Sender: TObject);
|
||||
@ -4979,6 +4980,11 @@ begin
|
||||
if FStateOfHintsOnMainPopupMenu then ShowHintPopupMenuItemClick(nil);
|
||||
end;
|
||||
|
||||
procedure TObjectInspectorDlg.FormResize(Sender: TObject);
|
||||
begin
|
||||
ComponentPanel.Constraints.MaxHeight := Height-50;
|
||||
end;
|
||||
|
||||
procedure TObjectInspectorDlg.GridKeyDown(Sender: TObject; var Key: Word;
|
||||
Shift: TShiftState);
|
||||
var
|
||||
|
Loading…
Reference in New Issue
Block a user