diff options
author | nyamatongwe <unknown> | 2012-06-27 10:42:37 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-06-27 10:42:37 +1000 |
commit | 71a8a5ad37205e2f777a44452e244b9215d42386 (patch) | |
tree | a4d12c6f83ca49357aebc8c76a75a35d8c412085 /src | |
parent | c75c3b29f9047a9b1bb0cdf7ea7d0f6336cd63ee (diff) | |
download | scintilla-mirror-71a8a5ad37205e2f777a44452e244b9215d42386.tar.gz |
Using the correct side margin for previous commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 20209ed98..07f7beb39 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3525,7 +3525,7 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { // Allow text at start of line to overlap 1 pixel into the margin as this displays // serifs and italic stems for aliased text. - const int leftTextOverlap = ((xOffset == 0) && (vs.rightMarginWidth > 0)) ? 1 : 0; + const int leftTextOverlap = ((xOffset == 0) && (vs.leftMarginWidth > 0)) ? 1 : 0; // Remove selection margin from drawing area so text will not be drawn // on it in unbuffered mode. |