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

Method startTimerEvent

app/src/processing/app/ui/Editor.java:1901–1910  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1899
1900
1901 void startTimerEvent() {
1902 endUndoEvent = new TimerTask() {
1903 public void run() {
1904 EventQueue.invokeLater(Editor.this::endTextEditHistory);
1905 }
1906 };
1907 timer.schedule(endUndoEvent, 3000);
1908 // let the gc eat the cancelled events
1909 timer.purge();
1910 }
1911
1912
1913 void endTextEditHistory() {

Callers 1

undoableEditHappenedMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected