summaryrefslogtreecommitdiff
path: root/lib/process_xml.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/process_xml.h')
-rw-r--r--lib/process_xml.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/process_xml.h b/lib/process_xml.h
index 5f1dfb93..7f8b273b 100644
--- a/lib/process_xml.h
+++ b/lib/process_xml.h
@@ -142,6 +142,7 @@ struct XmlGlobalSettings
programLanguage(zen::retrieveSystemLanguage()),
copyLockedFiles(true),
copyFilePermissions(false),
+ runWithBackgroundPriority(false),
fileTimeTolerance(2), //default 2s: FAT vs NTFS
verifyFileCopy(false),
transactionalFileCopy(true) {}
@@ -150,6 +151,8 @@ struct XmlGlobalSettings
bool copyLockedFiles; //VSS usage
bool copyFilePermissions;
+ bool runWithBackgroundPriority;
+
size_t fileTimeTolerance; //max. allowed file time deviation
bool verifyFileCopy; //verify copied files
bool transactionalFileCopy;
@@ -174,7 +177,7 @@ struct XmlGlobalSettings
#elif defined FFS_LINUX
textSearchRespectCase(true),
#endif
- iconSize(ICON_SIZE_MEDIUM),
+ iconSize(ICON_SIZE_SMALL),
lastUpdateCheck(0)
{
//default external apps will be translated "on the fly"!!!
bgstack15