aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-11-02 02:06:19 +0000
committernyamatongwe <devnull@localhost>2005-11-02 02:06:19 +0000
commit64104a00c4a3a044a2d162f5d5d9af5ca9a0b8cb (patch)
tree340c3b12fc3a87cf4f01570c94ccc7eccc97b64c /src
parent0f2ba89b8ee779680214d0bba3042d942c837e2d (diff)
downloadscintilla-mirror-64104a00c4a3a044a2d162f5d5d9af5ca9a0b8cb.tar.gz
Changed pixmapLine to only be one line high.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 07c52bc01..996d540db 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -2677,7 +2677,7 @@ void Editor::RefreshPixMaps(Surface *surfaceWindow) {
if (bufferedDraw) {
if (!pixmapLine->Initialised()) {
PRectangle rcClient = GetClientRectangle();
- pixmapLine->InitPixMap(rcClient.Width(), rcClient.Height(),
+ pixmapLine->InitPixMap(rcClient.Width(), vs.lineHeight,
surfaceWindow, wMain.GetID());
pixmapSelMargin->InitPixMap(vs.fixedColumnWidth,
rcClient.Height(), surfaceWindow, wMain.GetID());