about summary refs log tree commit diff stats
path: root/edit/004-programming-environment.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-02-15 23:45:24 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-02-15 23:45:24 -0800
commit3eaca808346acf47ddc38c9a591ff0ec4e471148 (patch)
tree944ebbdb38dbfd417e092f58dc7efc2af7c2602c /edit/004-programming-environment.mu
parent43ac7bef4b4ca484877ce1a53d9d54a51e1aab86 (diff)
downloadmu-3eaca808346acf47ddc38c9a591ff0ec4e471148.tar.gz
4206 - edit/ app: consistent cursor positioning
Diffstat (limited to 'edit/004-programming-environment.mu')
-rw-r--r--edit/004-programming-environment.mu4
1 files changed, 0 insertions, 4 deletions
diff --git a/edit/004-programming-environment.mu b/edit/004-programming-environment.mu
index cff42327..669335ff 100644
--- a/edit/004-programming-environment.mu
+++ b/edit/004-programming-environment.mu
@@ -438,8 +438,6 @@ def render-recipes screen:&:screen, env:&:environment, render-editor:render-reci
   left:num <- get *recipes, left:offset
   right:num <- get *recipes, right:offset
   row:num, column:num, screen <- call render-editor, screen, recipes
-  clear-line-until screen, right
-  row <- add row, 1
   <end-render-recipe-components>
   # draw dotted line after recipes
   draw-horizontal screen, row, left, right, 9480/horizontal-dotted
@@ -459,8 +457,6 @@ def render-sandbox-side screen:&:screen, env:&:environment, render-editor:render
   left:num <- get *current-sandbox, left:offset
   right:num <- get *current-sandbox, right:offset
   row:num, column:num, screen, current-sandbox <- call render-editor, screen, current-sandbox
-  clear-line-until screen, right
-  row <- add row, 1
   # draw solid line after code (you'll see why in later layers)
   draw-horizontal screen, row, left, right
   row <- add row, 1