Add flag for Window types

This commit is contained in:
2024-07-20 19:59:29 +03:00
committed by Ari Vuollet
parent 29e385ab4b
commit d545dd8219
9 changed files with 74 additions and 17 deletions

View File

@@ -218,7 +218,7 @@ namespace FlaxEditor.GUI.ContextMenu
desc.AllowMaximize = false;
desc.AllowDragAndDrop = false;
desc.IsTopmost = true;
desc.IsRegularWindow = false;
desc.Type = WindowType.Utility;
desc.HasSizingFrame = false;
OnWindowCreating(ref desc);
_window = Platform.CreateWindow(ref desc);