summaryrefslogtreecommitdiff
path: root/library/process_xml.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/process_xml.h')
-rw-r--r--library/process_xml.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/process_xml.h b/library/process_xml.h
index 2e57c433..d7437825 100644
--- a/library/process_xml.h
+++ b/library/process_xml.h
@@ -125,6 +125,7 @@ struct OptionalDialogs
bool warningNotEnoughDiskSpace;
bool warningUnresolvedConflicts;
bool warningSyncDatabase;
+ bool warningRecyclerMissing;
bool popupOnConfigChange;
bool showSummaryBeforeSync;
};
@@ -159,6 +160,7 @@ struct XmlGlobalSettings
dlgPos(wxDefaultCoord, wxDefaultCoord),
dlgSize(wxDefaultCoord, wxDefaultCoord),
isMaximized(false),
+ maxFolderPairsVisible(6),
autoAdjustColumnsLeft(false),
autoAdjustColumnsRight(false),
folderHistMax(12),
@@ -191,6 +193,8 @@ struct XmlGlobalSettings
wxSize dlgSize;
bool isMaximized;
+ int maxFolderPairsVisible;
+
ColumnAttributes columnAttribLeft;
ColumnAttributes columnAttribRight;
@@ -200,7 +204,7 @@ struct XmlGlobalSettings
ExternalApps externelApplications;
std::vector<wxString> cfgFileHistory;
- wxString lastUsedConfigFile;
+ std::vector<wxString> lastUsedConfigFiles;
std::vector<wxString> folderHistoryLeft;
std::vector<wxString> folderHistoryRight;
bgstack15