Browse Source

Increase maximum number of rows in an autocompletion list.

Martijn Laan 1 year ago
parent
commit
e74f60797f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Projects/Src/CompScintEdit.pas

+ 1 - 1
Projects/Src/CompScintEdit.pas

@@ -173,7 +173,7 @@ begin
   Call(SCI_AUTOCSETCANCELATSTART, 0, 0);
   Call(SCI_AUTOCSETDROPRESTOFWORD, 1, 0);
   Call(SCI_AUTOCSETIGNORECASE, 1, 0);
-  Call(SCI_AUTOCSETMAXHEIGHT, 7, 0);
+  Call(SCI_AUTOCSETMAXHEIGHT, 12, 0);
 
   Call(SCI_SETMULTIPLESELECTION, 1, 0);
   Call(SCI_SETADDITIONALSELECTIONTYPING, 1, 0);