aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2006-05-28 05:28:51 +0000
committernyamatongwe <unknown>2006-05-28 05:28:51 +0000
commitbab132fe40d6f480a54dbb1e9cdb8875a0306ab5 (patch)
tree0f066f54921de0ed695785310b5ed141f8a85aaa /src
parent698ebe5f2fe75dc3eb78e959753b1a1422a94aed (diff)
downloadscintilla-mirror-bab132fe40d6f480a54dbb1e9cdb8875a0306ab5.tar.gz
Increased number of margins to 5.
Diffstat (limited to 'src')
-rw-r--r--src/ViewStyle.cxx2
-rw-r--r--src/ViewStyle.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx
index 930427bb8..3de85c6be 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -17,7 +17,7 @@
#include "ViewStyle.h"
MarginStyle::MarginStyle() :
- symbol(false), width(16), mask(0xffffffff), sensitive(false) {
+ symbol(false), width(0), mask(0), sensitive(false) {
}
// A list of the fontnames - avoids wasting space in each style
diff --git a/src/ViewStyle.h b/src/ViewStyle.h
index d0cb87f21..892fdc59d 100644
--- a/src/ViewStyle.h
+++ b/src/ViewStyle.h
@@ -71,7 +71,7 @@ public:
bool hotspotUnderline;
bool hotspotSingleLine;
/// Margins are ordered: Line Numbers, Selection Margin, Spacing Margin
- enum { margins=3 };
+ enum { margins=5 };
int leftMarginWidth; ///< Spacing margin on left of text
int rightMarginWidth; ///< Spacing margin on left of text
bool symbolMargin;