aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-07-24 15:29:48 +1000
committernyamatongwe <devnull@localhost>2012-07-24 15:29:48 +1000
commit6728875a9748d11ca2fb92ad36a2e640b03aed38 (patch)
tree2a8bc6dbfd6213e0f292744e1cc52675ef4303fe /src/ScintillaBase.cxx
parent28a6b6543584a15ce128408ed523b88c8b588394 (diff)
downloadscintilla-mirror-6728875a9748d11ca2fb92ad36a2e640b03aed38.tar.gz
Add ncurses platform. Rest of the implementation is an external project.
From Mitchell Foral.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r--src/ScintillaBase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index cc3992f8f..b3b0b679f 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -226,8 +226,8 @@ void ScintillaBase::AutoCompleteStart(int lenEntered, const char *list) {
if (rcPopupBounds.Height() == 0)
rcPopupBounds = rcClient;
- int heightLB = 100;
- int widthLB = 100;
+ int heightLB = ac.heightLBDefault;
+ int widthLB = ac.widthLBDefault;
if (pt.x >= rcClient.right - widthLB) {
HorizontalScrollTo(xOffset + pt.x - rcClient.right + widthLB);
Redraw();