mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-20 18:19:10 +02:00
Object Inspector: Prevent component-tree hiding the component-values pane. Issue #34562.
git-svn-id: trunk@59803 -
This commit is contained in:
parent
9de85d233b
commit
c8545b8956
@ -623,6 +623,7 @@ type
|
||||
CompFilterEdit: TTreeFilterEdit;
|
||||
PnlClient: TPanel;
|
||||
StatusBar: TStatusBar;
|
||||
procedure FormResize(Sender: TObject);
|
||||
procedure MainPopupMenuClose(Sender: TObject);
|
||||
procedure MainPopupMenuPopup(Sender: TObject);
|
||||
procedure AvailComboBoxCloseUp(Sender: TObject);
|
||||
@ -5011,6 +5012,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