visual tweaks

This commit is contained in:
2018-11-26 12:36:12 -05:00
parent 57520ef947
commit 133ef02945

View File

@@ -35,7 +35,7 @@ class StackView(val interp: Interpreter) : View() {
init {
charOut = getStackStr { "${it.asChar ?: '\u2022'} (${it.value})" }
interp.stackChanged += { _ ->
interp.stackChanged += {
charOut = getStackStr { "${it.asChar ?: '\u2022'} (${it.value})" }
}
}