Skip to content

Commit 68a0188

Browse files
committed
add blank constructor to prevent Python Mode breakage
1 parent 1c8e14b commit 68a0188

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

app/src/processing/app/syntax/PdeInputHandler.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ public class PdeInputHandler extends DefaultInputHandler {
4848
protected Editor editor;
4949

5050

51+
/** Not recommended, but included for compatibility. */
52+
public PdeInputHandler() { }
53+
54+
5155
public PdeInputHandler(Editor editor) {
5256
this.editor = editor;
5357

todo.txt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
0252 (3.2)
2+
_ Move general PDE code out of JavaMode and into general base classes
3+
_ https://github.com/processing/processing/issues/4606
24
X change PdeInputHandler constructor
35
_ check whether this breaks other Modes before releasing
46
_ modify line number color when no lines extend that far?
57
_ https://github.com/processing/processing/pull/4560
68
_ text gutter doesn't seem to be hidpi
79
X or is it b/c screen not quite 2x? (nope)
810
_ swap out the fonts?
9-
_ Set text color for InputMethod
10-
_ https://github.com/processing/processing/pull/4593
1111
_ Processing .jar files in CLASSPATH can cause startup crash
1212
_ https://github.com/processing/processing/issues/4128
1313

@@ -16,7 +16,7 @@ _ https://github.com/processing/processing/issues/43503#issuecomment-237715947
1616

1717
contrib
1818

19-
input method work
19+
input method work from tyfkda
2020
X Simplify conditional branch
2121
X https://github.com/processing/processing/pull/4589
2222
X Enable input method support by default on Japanese/Korean/Chinese systems
@@ -49,8 +49,6 @@ _ possible infinite loop on modified externally
4949
_ https://github.com/processing/processing/issues/3965
5050

5151
medium
52-
_ Move general PDE code out of JavaMode and into general base classes
53-
_ https://github.com/processing/processing/issues/4606
5452
_ detect changes in case with libraries
5553
_ https://github.com/processing/processing/issues/4507
5654

0 commit comments

Comments
 (0)