mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
fix for #77506. only fire this handler when the grippy is clicked.
if we fire it when the splitter is clicked, we'll often stop displaying the message in the message pane. r=bhuvan,sr=mscott
This commit is contained in:
parent
a1d0305b36
commit
9ff6a84c90
@ -154,8 +154,8 @@ Rights Reserved.
|
||||
</box>
|
||||
<!-- if you change this id, please change GetThreadAndMessagePaneSplitter() and MsgToggleMessagePane() -->
|
||||
<splitter id="threadpane-splitter" collapse="after" persist="state"
|
||||
onclick="OnClickThreadAndMessagePaneSplitter()" orient="vertical" autostretch="never">
|
||||
<grippy/>
|
||||
orient="vertical" autostretch="never">
|
||||
<grippy onclick="OnClickThreadAndMessagePaneSplitter()" />
|
||||
</splitter>
|
||||
<!-- msg header view -->
|
||||
<box id="messagepanebox" orient="vertical" flex="4" persist="collapsed height" class="window-focusborder" focusring="false">
|
||||
|
@ -155,9 +155,9 @@ Rights Reserved.
|
||||
<outliner id="threadOutliner" flex="2" persist="height" style="height:0px" context="threadPaneContext"/>
|
||||
|
||||
<!-- if you change this id, please change GetThreadAndMessagePaneSplitter() and MsgToggleMessagePane() -->
|
||||
<splitter collapse="after" persist="state" onclick="OnClickThreadAndMessagePaneSplitter()"
|
||||
<splitter collapse="after" persist="state"
|
||||
id="threadpane-splitter" orient="vertical" autostretch="never">
|
||||
<grippy/>
|
||||
<grippy onclick="OnClickThreadAndMessagePaneSplitter()"/>
|
||||
</splitter>
|
||||
|
||||
<box id="messagepanebox" align="vertical" flex="3" persist="collapsed height" class="window-focusborder" focusring="false" onclick="contentAreaClick(event);" ondraggesture="nsDragAndDrop.startDrag(event, contentAreaDNDObserver);">
|
||||
|
Loading…
Reference in New Issue
Block a user