summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_allow_parallel_ops.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-18 16:42:46 -0400
committerB Stack <bgstack15@gmail.com>2020-03-18 16:42:46 -0400
commit6f61e4f4d347ee6a3830a784fcc8ed0e2982604d (patch)
treeeb171d5c806f6a149d061ec0db4eb3632fc7032b /freefilesync/ffs_allow_parallel_ops.patch
parentfreefilesync 10.22 dpkg rc1 (diff)
downloadstackrpms-6f61e4f4d347ee6a3830a784fcc8ed0e2982604d.tar.gz
stackrpms-6f61e4f4d347ee6a3830a784fcc8ed0e2982604d.tar.bz2
stackrpms-6f61e4f4d347ee6a3830a784fcc8ed0e2982604d.zip
10.22 rpm rc1
Diffstat (limited to 'freefilesync/ffs_allow_parallel_ops.patch')
-rw-r--r--freefilesync/ffs_allow_parallel_ops.patch11
1 files changed, 6 insertions, 5 deletions
diff --git a/freefilesync/ffs_allow_parallel_ops.patch b/freefilesync/ffs_allow_parallel_ops.patch
index 3d8197f..d317bf0 100644
--- a/freefilesync/ffs_allow_parallel_ops.patch
+++ b/freefilesync/ffs_allow_parallel_ops.patch
@@ -12,14 +12,15 @@ diff -x '*.orig' -x '*.swp' -x '*.rej' -Naur 10.9-0/FreeFileSync/Source/ui/folde
if (showCloudSetupDialog(parent_, folderPathPhrase, parallelOps, get(parallelOpsDisabledReason)) != ReturnSmallDlg::BUTTON_OKAY)
return;
diff -Naur -x '*.orig' -x '*.rej' 10.9-0/FreeFileSync/Source/ui/sync_cfg.cpp 10.9-1/FreeFileSync/Source/ui/sync_cfg.cpp
---- 10.9-0/FreeFileSync/Source/ui/sync_cfg.cpp 2019-02-10 22:01:42.075159451 -0500
-+++ 10.20-1/FreeFileSync/Source/ui/sync_cfg.cpp 2019-02-11 21:25:11.685992654 -0500
-@@ -283,7 +283,7 @@
+--- 10.21-0/FreeFileSync/Source/ui/sync_cfg.cpp 2020-03-18 08:56:08.644066742 -0400
++++ 10.21-1/FreeFileSync/Source/ui/sync_cfg.cpp 2020-03-18 09:13:30.459409986 -0400
+@@ -290,7 +290,7 @@
commandHistoryOut_(commandHistory),
globalPairCfg_(globalPairCfg),
localPairCfg_(localPairConfig),
--enableExtraFeatures_(false),
-+enableExtraFeatures_(true),
+- enableExtraFeatures_(false),
++ enableExtraFeatures_(true),
showMultipleCfgs_(showMultipleCfgs)
{
setStandardButtonLayout(*bSizerStdButtons, StdButtons().setAffirmative(m_buttonOkay).setCancel(m_buttonCancel));
+
bgstack15