aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2012-07-24 15:29:48 +1000
committernyamatongwe <unknown>2012-07-24 15:29:48 +1000
commitb74d888e9d72a7a61295dccfee1f07465f5be867 (patch)
treefb958dd1e96d6451555c8fdb0730ed7c2d02ca89 /src/ScintillaBase.cxx
parent124855efe9f3d44625552854cf618a64613fe8c8 (diff)
downloadscintilla-mirror-b74d888e9d72a7a61295dccfee1f07465f5be867.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();