From b74d888e9d72a7a61295dccfee1f07465f5be867 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 24 Jul 2012 15:29:48 +1000 Subject: Add ncurses platform. Rest of the implementation is an external project. From Mitchell Foral. --- src/ScintillaBase.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ScintillaBase.cxx') 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(); -- cgit v1.2.3