Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions WorldSim.Godot/Scripts/ClockworkObservatory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,15 @@ private void BuildUi()
var contentSplit = new HSplitContainer
{
SizeFlagsHorizontal = SizeFlags.ExpandFill,
SizeFlagsVertical = SizeFlags.ExpandFill,
#pragma warning disable CS0618 // Type or member is obsolete
SplitOffset = 1060
#pragma warning restore CS0618 // Type or member is obsolete
SizeFlagsVertical = SizeFlags.ExpandFill
};
root.AddChild(contentSplit);

var leftPanel = new VBoxContainer
{
SizeFlagsHorizontal = SizeFlags.ExpandFill,
SizeFlagsVertical = SizeFlags.ExpandFill
SizeFlagsVertical = SizeFlags.ExpandFill,
CustomMinimumSize = new Vector2(1060f, 0f)
};
contentSplit.AddChild(leftPanel);

Expand Down