Drops end tags for cleaner display
Brought to you by:
dobey,
sean_stuckless
It can be difficult to read the XML in gxmlviewer when
the end tags are displayed for every tag. This display
is not needed since each leaf tag sits on a separate
line and each branch tag defines an indentation level.
This patch will prevent end-tag display so a structure
more like a JTree-style view (like the Apache Xerces-J
XML viewer) is shown:
+<foo>
<bar>bah</bar>
</foo>
becomes
+<foo>
<bar> bah
and so on.
Patch against 1.3.3 (one file affected)