MCPcopy Index your code
hub / github.com/processing/processing / removeUpdate

Method removeUpdate

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

Source from the content-addressed store, hash-verified

1831 document.addDocumentListener(new DocumentListener() {
1832
1833 public void removeUpdate(DocumentEvent e) {
1834 if (isInserting && isDirectEdit() && !textarea.isOverwriteEnabled()) {
1835 endTextEditHistory();
1836 }
1837 isInserting = false;
1838 }
1839
1840 public void insertUpdate(DocumentEvent e) {
1841 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