Hi all.
At first: Sorry for my bad English. I hope everyone can understand me
I think the "collapse all" functionality doesn't work good enough. For example when I've the following html text:
<html>
<head>
</head>
<body>
<table>
<tr>
something more....
</tr>
</table>
<h1>
<font>
bla
</font>
</h1>
</body>
</html>
When I now use the "collapse all" function, you see "html", "head" and "body". So far, so good.
You get at this point:
<html>
+<head>
+<body>
</html>
Now I open the table tag, I see everything which is under "table". The Tags under table aren't collapsed ("tr", "something more", "font" and "bla" are visible!). I expected from the "collapse all" that everything is collapsed even when you open one level. In this example it means, I only want to see the table tag and the h1 tag, nothing more.
What you get after this is:
<html>
+<head>
<body>
<table>
<tr>
something more....
</tr>
</table>
<h1>
<font>
bla
</font>
</h1>
</body>
</html>
I expected to get this:
<html>
+<head>
<body>
+<table>
+<h1>
</body>
</html>
(+ means, the content of the tag is hidden)
Is it possible to correct this behaviour of the "collapse all" function? It will be a very nice feature, specially for C++ header with serveral class definitions.
Greets Andreas (ben-savan)
-------------------------------------------
By the way: Did anyone understand the problem, I'm thinking about
At first: Sorry for my bad English. I hope everyone can understand me
I think the "collapse all" functionality doesn't work good enough. For example when I've the following html text:
<html>
<head>
</head>
<body>
<table>
<tr>
something more....
</tr>
</table>
<h1>
<font>
bla
</font>
</h1>
</body>
</html>
When I now use the "collapse all" function, you see "html", "head" and "body". So far, so good.
You get at this point:
<html>
+<head>
+<body>
</html>
Now I open the table tag, I see everything which is under "table". The Tags under table aren't collapsed ("tr", "something more", "font" and "bla" are visible!). I expected from the "collapse all" that everything is collapsed even when you open one level. In this example it means, I only want to see the table tag and the h1 tag, nothing more.
What you get after this is:
<html>
+<head>
<body>
<table>
<tr>
something more....
</tr>
</table>
<h1>
<font>
bla
</font>
</h1>
</body>
</html>
I expected to get this:
<html>
+<head>
<body>
+<table>
+<h1>
</body>
</html>
(+ means, the content of the tag is hidden)
Is it possible to correct this behaviour of the "collapse all" function? It will be a very nice feature, specially for C++ header with serveral class definitions.
Greets Andreas (ben-savan)
-------------------------------------------
By the way: Did anyone understand the problem, I'm thinking about