From 70e22e03152a3ec97acf1998f07b04ccf420edb2 Mon Sep 17 00:00:00 2001 From: Jason Naylor Date: Wed, 15 Jul 2026 13:51:19 -0700 Subject: [PATCH] Allow skipping Send/Receive data when restoring a backup Enable the Send/Receive checkbox in the restore dialog when the backup includes S/R data, mirroring the other optional items. The restore service already honors the flag, and the existing guard still blocks overwriting a project that uses Send/Receive without its S/R data. Co-Authored-By: Claude Fable 5 --- Src/FwCoreDlgs/BackupRestore/RestoreProjectDlg.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/FwCoreDlgs/BackupRestore/RestoreProjectDlg.cs b/Src/FwCoreDlgs/BackupRestore/RestoreProjectDlg.cs index 7c44780f76..e5f6581c51 100644 --- a/Src/FwCoreDlgs/BackupRestore/RestoreProjectDlg.cs +++ b/Src/FwCoreDlgs/BackupRestore/RestoreProjectDlg.cs @@ -373,7 +373,7 @@ private void SetDialogControlsFromBackupSettings(BackupFileSettings settings, St m_spellCheckAdditions.Checked = settings.IncludeSpellCheckAdditions; m_spellCheckAdditions.Enabled = settings.IncludeSpellCheckAdditions; m_sendReceiveData.Checked = settings.IncludeSendReceiveData; - m_sendReceiveData.Enabled = false; + m_sendReceiveData.Enabled = settings.IncludeSendReceiveData; if (m_rdoDefaultFolder.Checked) m_lblDefaultBackupIncludes.Text = m_presenter.IncludesFiles(settings); else