about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-15 10:01:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-15 10:01:43 -0700
commit774a4c54ad490c681cb3632851d486ad3751643f (patch)
tree3b6cfd2127ebdf0432e0d08595051e7ee4363d74
parent5f60c00a9026eb382c064d76b50cc6ce756514fe (diff)
downloadmu-774a4c54ad490c681cb3632851d486ad3751643f.tar.gz
1784 - start making render more efficient
We stopped rendering just the widget under focus when we switched away
from the simplistic list of editors. Need to bring that back.
-rw-r--r--edit.mu1
1 files changed, 0 insertions, 1 deletions
diff --git a/edit.mu b/edit.mu
index 255e63bd..76bc1898 100644
--- a/edit.mu
+++ b/edit.mu
@@ -742,7 +742,6 @@ recipe move-cursor-in-editor [
   cursor-row:address:number/deref <- get t:touch-event, row:offset
   cursor-column:address:number <- get-address editor:address:editor-data/deref, cursor-column:offset
   cursor-column:address:number/deref <- get t:touch-event, column:offset
-  render screen:address, editor:address:editor-data
   # gain focus
   reply 1:literal/true
 ]