diff options
author | 2016-12-05 20:50:27 -0500 | |
---|---|---|
committer | 2016-12-05 20:50:27 -0500 | |
commit | 41cc293da9dd1135926aa3d4f84235c32a38333d (patch) | |
tree | 2bdbe4ff5d0d6aaea3a13e0a57371fddd7d12840 /src/textadept.c | |
parent | 1e32d7a2f43a04f359f5b0032874b0ca57ace37f (diff) | |
download | textadept-41cc293da9dd1135926aa3d4f84235c32a38333d.tar.gz textadept-41cc293da9dd1135926aa3d4f84235c32a38333d.zip |
Updated to Scintilla 3.7.1.
Diffstat (limited to 'src/textadept.c')
-rw-r--r-- | src/textadept.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textadept.c b/src/textadept.c index d1a05708..dbab927d 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -2185,7 +2185,7 @@ static Scintilla *new_view(sptr_t doc) { #elif CURSES Scintilla *view = scintilla_new(s_notify); #endif - SS(view, SCI_USEPOPUP, 0, 0); + SS(view, SCI_USEPOPUP, SC_POPUP_NEVER, 0); lL_addview(lua, view); l_setglobalview(lua, view); if (doc) SS(view, SCI_SETDOCPOINTER, 0, doc); |