In wxPython 2.4.2.4 on GTK1.2, wxLogError would react on newlines in
the text it had to display, i.e. it would render the lines in the
message one below the other in the "Details" list box.
In wxPython 2.6.0.1 on GTK2.2, it's all shown as one long line in the
"Details" list box, with a horizontal scrollbar, in spite of the
newlines that are present in the text.
1. Is this the expected behaviour?
2. If so, is it configurable?
In wxPython 2.4.2.4 on GTK1.2, wxLogError would react on newlines in
the text it had to display, i.e. it would render the lines in the
message one below the other in the "Details" list box.
In wxPython 2.6.0.1 on GTK2.2, it's all shown as one long line in the
"Details" list box, with a horizontal scrollbar, in spite of the
newlines that are present in the text.
1. Is this the expected behaviour?
Probably. I don't remember any discussions about it though.
2. If so, is it configurable?
No, but you could probably work around it by creating your own wx.Log class that splits the strings as it gets them and sends each to the real log instance.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!