From c64ee7ddfc87a872e8eaa51e12ad8b308eb66da8 Mon Sep 17 00:00:00 2001 From: Sven Arweiler Date: Sat, 9 May 2020 11:43:44 +0200 Subject: [PATCH] send a midi note off when stopping --- zellen.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zellen.lua b/zellen.lua index 1cb86c6..9cbd9a4 100644 --- a/zellen.lua +++ b/zellen.lua @@ -1,4 +1,4 @@ --- zellen v1.4.2 +-- zellen v1.4.3 -- -- sequencer based on -- conway's game of life @@ -668,6 +668,7 @@ function key(n, z) clk:stop() state.seq_running = false state.show_playing_indicator = false + notes_off() else if (#state.playable_cells == 0) then generation_step()