notes and disable electric scroll (issue 1055)

This commit is contained in:
benfry
2012-11-24 21:22:09 +00:00
parent 772597e99b
commit bb692b77bc
3 changed files with 15 additions and 9 deletions

View File

@@ -142,7 +142,11 @@ public class PdeTextAreaDefaults extends TextAreaDefaults {
document = new SyntaxDocument();
editable = true;
electricScroll = 3;
// Set to 0 for revision 0215 because it causes strange jumps
// http://code.google.com/p/processing/issues/detail?id=1055
electricScroll = 0;
caretVisible = true;
caretBlinks = Preferences.getBoolean("editor.caret.blink");
blockCaret = Preferences.getBoolean("editor.caret.block");

View File

@@ -106,8 +106,6 @@ if (external && event.getNative() instanceof java.awt.event.KeyEvent &&
exit();
}
_ send note about begin/endShape and vertex() calls
_ createShape() not yet implemented for Java2D
_ http://code.google.com/p/processing/issues/detail?id=1400

View File

@@ -21,18 +21,21 @@ import java.io.OutputStream;
import java.io.IOException;
X error lines from Commander should be 1-indexed not 0-indexed
X http://code.google.com/p/processing/issues/detail?id=1392
_ fix the debug stuff before shipping this out
_ DebugMode throwing exception about breakpoints when trying to save
X Sketch that exported to Linux doesn't get the command line arguments
X http://code.google.com/p/processing/issues/detail?id=1359
X "electricScroll" feature causing weird jumps when double-clicking
X http://code.google.com/p/processing/issues/detail?id=1055
_ fix the debug stuff before shipping this out
_ DebugMode throwing exception about breakpoints when trying to save
earlier
X The sketch name can't begin with '_' (underscore)
X http://code.google.com/p/processing/issues/detail?id=859
_ clientEvent() called even w/o data from server (with fix)
_ http://code.google.com/p/processing/issues/detail?id=189
_ check on adding ip() method
X clientEvent() called even w/o data from server (with fix)
X http://code.google.com/p/processing/issues/detail?id=189
X check on adding ip() method
X http://code.google.com/p/processing/issues/detail?id=1228
_ if RuntimeException thrown, needs to check if it's a wrapped exception
_ for instance, if there's a crash inside makeGraphics()
@@ -47,7 +50,7 @@ _ change error message for serial re: 64-bit
_ "To use this library, switch to 32-bit mode in Preferences." (OS X)
_ "To use this library, you must use the 32-bit version of Processing."
_ temp files are not deleted
_ temporary files (for sketches and logs) are not deleted
_ http://code.google.com/p/processing/issues/detail?id=562
_ standard "Emacs" keybindings not implemented on OS X
@@ -240,6 +243,7 @@ _ http://code.google.com/p/processing/issues/detail?id=905
2.0 FINAL / misc pde cleanups
_ 'recent' menu doesn't respect examples folder of other p5 versions
_ 'recent' menu paths can get enormous
_ what order should 'recent' menu use?
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .