aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authormitchell <unknown>2020-03-27 11:16:43 -0400
committermitchell <unknown>2020-03-27 11:16:43 -0400
commit4ce8706b744b86ae0f48a57303aad318c14ab9ba (patch)
treeab103dfcf27b9ce4c0a524f8c40535bf35c36fea /doc
parentd6d886563cc23bc79a4495dc9018945c53b02bfe (diff)
downloadscintilla-mirror-4ce8706b744b86ae0f48a57303aad318c14ab9ba.tar.gz
Backport: Bug [#2152]. Ignore Alt+Keypad keys that will result in a WM_CHAR.
Backport of changeset 7961:6950bccc71ce.
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html6
-rw-r--r--doc/ScintillaHistory.html6
2 files changed, 12 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 46262e0a5..f3d5c9fd3 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -5494,6 +5494,12 @@ struct Sci_TextToFind {
If you are building a table, you might
want to use <code>SCMOD_NORM</code>, which has the value 0, to mean no modifiers.</p>
+ <p>On Win32, the numeric keypad with Alt pressed can be used to enter characters by number.
+ This can produce unexpected results in non-numlock mode when function keys are assigned so
+ potentially problematic keys are ignored. For example, setting
+ <code>SCMOD_ALT</code>,<code>SCK_UP</code> will only be active for the Up key on the
+ main cursor keys, not the numeric keypad.</p>
+
<p><b id="SCI_ASSIGNCMDKEY">SCI_ASSIGNCMDKEY(int <a class="jump"
href="#keyDefinition">keyDefinition</a>, int sciCommand)</b><br />
This assigns the given key definition to a Scintilla command identified by
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 884d0fa98..c6ed95a5a 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -584,6 +584,12 @@
CF_UNICODETEXT.
</li>
<li>
+ On Win32, the numeric keypad with Alt pressed can be used to enter characters by number.
+ This can produce unexpected results in non-numlock mode when function keys are assigned.
+ Potentially problematic keys like Alt+KeypadUp are now ignored.
+ <a href="https://sourceforge.net/p/scintilla/bugs/2152/">Bug #2152</a>.
+ </li>
+ <li>
Improve IME behaviour on GTK.
Set candidate position for windowed IME.
Improve location of candidate window.