fix shell widget

This commit is contained in:
Evgeny
2021-08-27 12:23:29 +03:00
parent ad3c95399c
commit e4b0666579

View File

@@ -24,10 +24,11 @@ end
function on_shell_result(text) function on_shell_result(text)
if text == "" then if text == "" then
return current_output = "no output"
else
current_output = text
end end
current_output = text
redraw() redraw()
end end