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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/process_xml.h b/lib/process_xml.h
index 43dedb51..540b4ef3 100644
--- a/lib/process_xml.h
+++ b/lib/process_xml.h
@@ -147,6 +147,7 @@ struct XmlGlobalSettings
dlgPos(wxDefaultCoord, wxDefaultCoord),
dlgSize(wxDefaultCoord, wxDefaultCoord),
isMaximized(false),
+ sashOffset(0),
maxFolderPairsVisible(6),
columnAttribNavi (zen::getDefaultColumnAttributesNavi()),
columnAttribLeft (zen::getDefaultColumnAttributesLeft()),
@@ -184,6 +185,7 @@ struct XmlGlobalSettings
wxPoint dlgPos;
wxSize dlgSize;
bool isMaximized;
+ int sashOffset;
int maxFolderPairsVisible;
bgstack15