MCPcopy Index your code
hub / github.com/benfry/processing4 / removeUpdate

Method removeUpdate

app/src/processing/app/ui/Editor.java:1572–1577  ·  view source on GitHub ↗
(DocumentEvent e)

Source from the content-addressed store, hash-verified

1570 document.addDocumentListener(new DocumentListener() {
1571
1572 public void removeUpdate(DocumentEvent e) {
1573 if (isInserting && isDirectEdit() && !textarea.isOverwriteEnabled()) {
1574 endTextEditHistory();
1575 }
1576 isInserting = false;
1577 }
1578
1579 public void insertUpdate(DocumentEvent e) {
1580 if (!isInserting && !textarea.isOverwriteEnabled() && isDirectEdit()) {

Callers

nothing calls this directly

Calls 3

isDirectEditMethod · 0.95
endTextEditHistoryMethod · 0.95
isOverwriteEnabledMethod · 0.80

Tested by

no test coverage detected