mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
disabling input method support that's breaking the accents etc
This commit is contained in:
@@ -73,15 +73,7 @@ public class JEditTextArea extends JComponent
|
||||
/** The size of the offset between the leftmost padding and the code */
|
||||
public static final int leftHandGutter = 6;
|
||||
|
||||
/**
|
||||
* Creates a new JEditTextArea with the default settings.
|
||||
*/
|
||||
/*
|
||||
public JEditTextArea()
|
||||
{
|
||||
this(TextAreaDefaults.getDefaults());
|
||||
}
|
||||
*/
|
||||
private InputMethodSupport inputMethodSupport = null;
|
||||
|
||||
/**
|
||||
* Creates a new JEditTextArea with the specified settings.
|
||||
@@ -144,12 +136,16 @@ public class JEditTextArea extends JComponent
|
||||
/**
|
||||
* Inline Input Method Support for Japanese.
|
||||
*/
|
||||
private InputMethodSupport inputMethodSupport = null;
|
||||
public InputMethodRequests getInputMethodRequests() {
|
||||
if (inputMethodSupport == null) {
|
||||
inputMethodSupport = new InputMethodSupport(this);
|
||||
// Temporarily disabling for now.
|
||||
// http://code.google.com/p/processing/issues/detail?id=335
|
||||
if (false) {
|
||||
if (inputMethodSupport == null) {
|
||||
inputMethodSupport = new InputMethodSupport(this);
|
||||
}
|
||||
return inputMethodSupport;
|
||||
}
|
||||
return inputMethodSupport;
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user