We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8332eb4 commit 3eaf471Copy full SHA for 3eaf471
MicroEngineerProject/MicroEngineer/UI/Controllers/Uxmls.cs
@@ -71,15 +71,16 @@ private VisualTreeAsset LoadAsset(string path)
71
72
public WindowOptions InstantiateWindowOptions(string windowId, bool makeDraggable = true)
73
{
74
- return new WindowOptions()
+ return WindowOptions.Default with
75
76
WindowId = windowId,
77
IsHidingEnabled = true,
78
MoveOptions = new MoveOptions
79
80
IsMovingEnabled = makeDraggable,
81
CheckScreenBounds = true
82
- }
+ },
83
+ DisableGameInputForTextFields = true
84
};
85
}
86
0 commit comments