ux: move --signoff toggle from repository configuration window to commit options bar

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-01-24 14:45:49 +08:00
parent 0192e941f0
commit 49ee9c8e33
No known key found for this signature in database
13 changed files with 32 additions and 26 deletions

View file

@ -62,6 +62,12 @@ namespace SourceGit.ViewModels
private set => SetProperty(ref _isCommitting, value);
}
public bool EnableSignOff
{
get => _repo.Settings.EnableSignOffForCommit;
set => _repo.Settings.EnableSignOffForCommit = value;
}
public bool UseAmend
{
get => _useAmend;