about summary refs log tree commit diff stats
path: root/sandbox/009-sandbox-test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-06-25 10:15:44 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-06-25 10:15:48 -0700
commitd2f0704962eb0e43f3db8b461dd6d48ee9297f73 (patch)
treeb7ce6b17274721dcd8820ceeace23e4ed1baceab /sandbox/009-sandbox-test.mu
parentd5a0abc20f2561d739fcc5cdeeef1e43ddcfd5ce (diff)
downloadmu-d2f0704962eb0e43f3db8b461dd6d48ee9297f73.tar.gz
3957
Marking sandbox responses as expected can take a long time if there are
many sandboxes. Indicate when a click is being worked on.
Diffstat (limited to 'sandbox/009-sandbox-test.mu')
-rw-r--r--sandbox/009-sandbox-test.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/sandbox/009-sandbox-test.mu b/sandbox/009-sandbox-test.mu
index 62ced6c9..7c6c0804 100644
--- a/sandbox/009-sandbox-test.mu
+++ b/sandbox/009-sandbox-test.mu
@@ -130,10 +130,12 @@ after <global-touch> [
     # identify the sandbox whose output is being clicked on
     sandbox:&:sandbox <- find-click-in-sandbox-output env, click-row
     break-unless sandbox
+    screen <- update-status screen, [updating...      ], 245/grey
     # toggle its expected-response, and save session
     sandbox <- toggle-expected-response sandbox
     save-sandboxes env, resources
     screen <- render-sandbox-side screen, env, render
+    screen <- update-status screen, [                 ], 245/grey
     screen <- update-cursor screen, current-sandbox, env
     loop +next-event
   }