feature: add context menu item to move repository node (#437)

This commit is contained in:
leo 2024-09-02 17:05:43 +08:00
parent 837e3889b7
commit dffd9d7676
No known key found for this signature in database
7 changed files with 196 additions and 0 deletions

View file

@ -0,0 +1,14 @@
using Avalonia.Controls;
namespace SourceGit.Views
{
public partial class MoveRepositoryNode : UserControl
{
public MoveRepositoryNode()
{
InitializeComponent();
}
}
}