mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
FIX: Bug [0001752] Lazarus 1.7 / Files view is empty if tab is activated with Ctrl+Tab (patch by accorp)
This commit is contained in:
parent
493f4d8209
commit
87d252e80f
1 changed files with 3 additions and 0 deletions
|
|
@ -924,6 +924,9 @@ procedure TfrmMain.FormCreate(Sender: TObject);
|
|||
Result := TFileViewNotebook.Create(aParent, aSide);
|
||||
Result.Align := alClient;
|
||||
Result.Options := [nboHidePageListPopup];
|
||||
{$if lcl_fullversion >= 1070000}
|
||||
Result.Options := Result.Options + [nboDoChangeOnSetIndex];
|
||||
{$endif}
|
||||
|
||||
Result.OnCloseTabClicked := @NotebookCloseTabClicked;
|
||||
Result.OnMouseDown := @nbPageMouseDown;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue