Peter Lairo wrote:
> Hi,
>
> the header pane vanished after minimizing it. Does anyone know what file
> i need to delete to make it reappear?
>
> using mozilla 2001-11-01, winNT
>
After changing some XUL-code in my messenger.jar/msgHdrViewOverlay.xul
-file everything works Ok.
So replace the <grid></grid> -thing with following:
<hbox id="collapsedHeaderView" class="header-part1" collapsed="true"
flex="1">
<hbox class="collapsedToggleHdrBox" align="top" pack="center">
<image id="toggleHeaderView" class="collapsedHeaderViewButton"
onclick="ToggleHeaderView();"/>
</hbox>
<hbox id="collapsedsubjectBox" collapsed="true" crop="right" flex="1">
<text class="collapsedHeaderDisplayName" value="&subjectField.label;"/>
<text id="collapsedsubjectValue" class="collapsedHeaderValue" crop="right"
flex="1"/>
</hbox>
<hbox id="collapsedfromBox" collapsed="true">
<text class="collapsedHeaderDisplayName" value="&fromField.label;"/>
<mail-emailaddress id="collapsedfromValue" flex="1"/>
</hbox>
<hbox style="text-align: right;" id = "collapseddateBox" collapsed="true">
<text id="collapseddateValue" class="collapsedHeaderValue"/>
</hbox>
<hbox id="collapsedAttachmentBox" hide="true" >
<image id="collapsedAttachment" class="collapsedAttachmentButton"
onclick="ToggleHeaderView();" /> </hbox>
</hbox>
Smaug