diff --git a/src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.cs b/src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.cs new file mode 100644 index 0000000..e7485b7 --- /dev/null +++ b/src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.cs @@ -0,0 +1,21 @@ +using Godot; +using SharpIDE.Godot.Features.IdeSettings; + +namespace SharpIDE.Godot.Features.SlnPicker; + +public partial class PreviousSlnEntry : HBoxContainer +{ + private Label _slnPathLabel = null!; + private Label _slnNameLabel = null!; + + public PreviouslyOpenedSln PreviouslyOpenedSln { get; set; } = null!; + + public override void _Ready() + { + if (PreviouslyOpenedSln is null) return; + _slnNameLabel = GetNode