char editor: display space when uninitialized
This commit is contained in:
parent
3aec30e32a
commit
a569fb46a8
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ impl CharEditor {
|
||||||
)
|
)
|
||||||
.set_view(data
|
.set_view(data
|
||||||
.get_port()
|
.get_port()
|
||||||
.map(move |c| TerminalAtom::from(c))
|
.map(move |c| TerminalAtom::from(if c == '\0' { ' ' } else { c }))
|
||||||
.to_grid()
|
.to_grid()
|
||||||
)
|
)
|
||||||
.set_cmd( editor.clone() )
|
.set_cmd( editor.clone() )
|
||||||
|
|
Loading…
Reference in a new issue