aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2012-09-19 22:42:10 +1000
committernyamatongwe <unknown>2012-09-19 22:42:10 +1000
commit5157aaacf43d61b6fabb3f967b6308c0f9956e4e (patch)
tree6260f0a7b8541f265bbe7eb5a22d67f38e9ec31e /src/Editor.h
parent1de003690c05688d6857ab57b3d02e7e262c092a (diff)
downloadscintilla-mirror-5157aaacf43d61b6fabb3f967b6308c0f9956e4e.tar.gz
Allow subclasses to modify padding when last segment on line is italics.
Used by ncurses platform layer. From Mitchell Foral.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index cb1141b61..e040bdb47 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -271,6 +271,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
int marginNumberPadding; // the right-side padding of the number margin
int ctrlCharPadding; // the padding around control character text blobs
+ int lastSegItalicsOffset; // the offset so as not to clip italic characters at EOLs
Document *pdoc;