about summary refs log tree commit diff stats
path: root/edit/001-editor.mu
diff options
context:
space:
mode:
Diffstat (limited to 'edit/001-editor.mu')
-rw-r--r--edit/001-editor.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/edit/001-editor.mu b/edit/001-editor.mu
index a6dde85b..d81278ae 100644
--- a/edit/001-editor.mu
+++ b/edit/001-editor.mu
@@ -6,8 +6,10 @@ def main text:text [
   local-scope
   load-ingredients
   open-console
+  hide-screen 0/screen
   e:&:editor <- new-editor text, 0/left, 5/right
   render 0/screen, e
+  show-screen 0/screen
   wait-for-event 0/console
   close-console
 ]