Fix window focus issue when removing actors

This commit is contained in:
Wojtek Figat
2021-08-12 12:51:20 +02:00
parent 718ae78036
commit 6f5605b7ca
2 changed files with 5 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ namespace FlaxEditor.Windows
: base(editor, true, ScrollBars.Vertical)
{
Title = "Properties";
AutoFocus = true;
Presenter = new CustomEditorPresenter(editor.Undo);
Presenter.Panel.Parent = this;