aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-12-27 23:18:51 +0000
committernyamatongwe <unknown>2000-12-27 23:18:51 +0000
commit0c19585c6cbb306c8cc2e70e7002152d994147af (patch)
tree2e166c5c3e90813a0da607ad8a0c839c2d401882
parent9cb4cca29f5535ea07f0582dad57186bae6ec474 (diff)
downloadscintilla-mirror-0c19585c6cbb306c8cc2e70e7002152d994147af.tar.gz
Put VISIBLE_CENTER back in.
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 099f2e3b7..c41edfd77 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -383,6 +383,7 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara
#define SCI_WORDPARTRIGHT 2392
#define SCI_WORDPARTRIGHTEXTEND 2393
#define VISIBLE_SLOP 0x01
+#define VISIBLE_CENTER 0x02
#define VISIBLE_STRICT 0x04
#define SCI_SETVISIBLEPOLICY 2394
#define SCI_GRABFOCUS 2400
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index d1107388f..b4c52801d 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1032,7 +1032,7 @@ fun void WordPartRightExtend=2393(,)
# Constants for use with SetVisiblePolicy
val VISIBLE_SLOP=0x01
-#val VISIBLE_CENTER=0x02
+val VISIBLE_CENTER=0x02
val VISIBLE_STRICT=0x04
# Set the way the display area is determined when a particular line is to be moved to.
fun void SetVisiblePolicy=2394(int visiblePolicy, int visibleSlop)