br0xen/boltbrowser

Values preview.

cydside opened this issue · 1 comments

Hi, here is what happen:
boltbrowser_bytearray_vs_text

Values preview is in pure bytearray but editing it the text is showed!
Any suggestions?
Thanks.

I got it. If you break the value data in multiple line eg.:
[]byte({"usr_name":"danilo", "usr_pass":"", "usr_level":9, ....})
I guess the line feed char at the end of line makes the preview unreadable. Otherwise if you keep the value data in a single line eg.:
[]byte({"usr_name":"danilo","usr_pass":"","usr_level":9,...)
the preview is readable like in the editing box.