mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
fix for #73156. enter should work like open in the thread / search pane.
patch by the bossman (putterman@netscape.com), sr=sspitzer
This commit is contained in:
parent
a2264f1a51
commit
7d2dd6feab
@ -139,7 +139,8 @@ function ThreadPaneDoubleClick()
|
||||
|
||||
function ThreadPaneKeyPress(event)
|
||||
{
|
||||
return;
|
||||
if (event.keyCode == 13)
|
||||
ThreadPaneDoubleClick();
|
||||
}
|
||||
|
||||
function MsgSortByDate()
|
||||
|
@ -34,7 +34,8 @@ Rights Reserved.
|
||||
<outliner id="threadOutliner" flex="1"
|
||||
ondraggesture="return BeginDragThreadPane(event);"
|
||||
ondragdrop="return DropOnThreadPane(event);"
|
||||
onclick="ThreadPaneOnClick(event);">
|
||||
onclick="ThreadPaneOnClick(event);"
|
||||
onkeypress="ThreadPaneKeyPress(event);">
|
||||
<outlinercol id="threadCol" display="&threadColumn.label;" class="outlinercol-header outlinercol-image outlinercol-inset-header threadColumnHeader" currentView="unthreaded" cycler="true" />
|
||||
<outlinercol id="subjectCol" class="outlinercol-header outlinercell-inset-header sortDirectionIndicator" persist="hidden width" flex="7" label="&subjectColumn.label;" primary="true"/>
|
||||
<splitter class="tree-splitter"/>
|
||||
|
Loading…
Reference in New Issue
Block a user