mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-31 09:04:59 +00:00
18 lines
394 B
C#
18 lines
394 B
C#
using Avalonia.Controls;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class ConfigureWorkspace : ChromelessWindow
|
|
{
|
|
public ConfigureWorkspace()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnClosing(WindowClosingEventArgs e)
|
|
{
|
|
ViewModels.Preferences.Instance.Save();
|
|
base.OnClosing(e);
|
|
}
|
|
}
|
|
}
|