build success
This commit is contained in:
@@ -17,7 +17,11 @@ namespace UnifiedFarmLauncher.Views
|
||||
private readonly WorkerEditViewModel _viewModel;
|
||||
private bool _result;
|
||||
|
||||
public WorkerEditWindow(WorkerConfig? worker = null)
|
||||
public WorkerEditWindow() : this(null)
|
||||
{
|
||||
}
|
||||
|
||||
public WorkerEditWindow(WorkerConfig? worker)
|
||||
{
|
||||
InitializeComponent();
|
||||
var configService = new ConfigService();
|
||||
@@ -91,7 +95,7 @@ namespace UnifiedFarmLauncher.Views
|
||||
}
|
||||
}
|
||||
|
||||
private async void AddDriveButton_Click(object? sender, RoutedEventArgs e)
|
||||
private void AddDriveButton_Click(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
// Simplified: use a simple input box
|
||||
// In a full implementation, you'd use a proper input dialog
|
||||
@@ -106,7 +110,7 @@ namespace UnifiedFarmLauncher.Views
|
||||
}
|
||||
}
|
||||
|
||||
private async void AddPathButton_Click(object? sender, RoutedEventArgs e)
|
||||
private void AddPathButton_Click(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
// Simplified: use a simple input box
|
||||
// In a full implementation, you'd use a proper input dialog
|
||||
|
||||
Reference in New Issue
Block a user