processRomanChar now sets aside formatting
like TAB, ENTER, etc.
This commit is contained in:
parent
275cf9d79d
commit
df4f8b8a45
1 changed files with 3 additions and 0 deletions
|
@ -1144,6 +1144,9 @@ public void paste(int offset) {
|
|||
|
||||
private void processRomanChar(String key, MutableAttributeSet attSet) {
|
||||
switch (key.charAt(0)) {
|
||||
case KeyEvent.VK_TAB:
|
||||
case KeyEvent.VK_ENTER:
|
||||
case KeyEvent.VK_ESCAPE:
|
||||
case KeyEvent.VK_BACK_SPACE:
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue