mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-26 21:17:20 -08:00
19 lines
393 B
C#
19 lines
393 B
C#
|
using Avalonia.Controls;
|
||
|
|
||
|
namespace SourceGit.Views
|
||
|
{
|
||
|
public partial class ConfigureWorkspace : ChromelessWindow
|
||
|
{
|
||
|
public ConfigureWorkspace()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
protected override void OnClosing(WindowClosingEventArgs e)
|
||
|
{
|
||
|
ViewModels.Preference.Instance.Save();
|
||
|
base.OnClosing(e);
|
||
|
}
|
||
|
}
|
||
|
}
|