Closed Bug 238834 Opened 20 years ago Closed 18 years ago

common message selection via Ctrl+Space doesn't work

Categories

(Thunderbird :: Mail Window Front End, defect)

defect
Not set
minor

Tracking

(Not tracked)

VERIFIED WORKSFORME

People

(Reporter: a-kobel, Assigned: mscott)

References

Details

User-Agent:       Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Opera 7.21  [en]
Build Identifier: Mozilla Thunderbird 0.5 (20040207)

Don't know whether it's a bug or just a still lacking feature:
The common practice of selecting things with holding Ctrl down, moving the focus 
via Up and Down and then (de-)selecting an item with Space doesn't work in the 
preview folder. While you can move the focus without changing the selection, you 
aren't able to select an item.

Reproducible: Always
Steps to Reproduce:
1. Open mail folder preview pane with more than one message in it.
2. Select first message.
3. Use Ctrl+Down to next message, try pressing Space - nothing happens.

Actual Results:  
Simply nothing.

Expected Results:  
Select the second message, too. Should act like - for example - the Windows 
Explorer when selecting files.

Workaround with Ctrl+LeftClick on the other message(s).
Confirming...
Confirming...

Gerv
Status: UNCONFIRMED → NEW
Ever confirmed: true
Made a extension that make just this. http://www.webhallen.com/emil/ctrlspace.xpi

If I could I would submit a patch but I don't know how to do that. So if someone
make a patch of my extension I would be very happy.

The code is:
<key id="ctrlspace" key=" " oncommand="ToggleSelect(event)" modifiers="accel"/>
in <keyset id="mailKeys"> in the file mailWindowOverlay.xul
and the function:
function ToggleSelect(event)
{
	var tree = event.target;
	var treeBoxObj = tree.treeBoxObject;
	var treeSelection = treeBoxObj.selection;
	treeSelection.toggleSelect(treeSelection.currentIndex);
	event.preventBubble();
}
*** Bug 267507 has been marked as a duplicate of this bug. ***
Isn't this a dupe of #169921?
(In reply to comment #5)
> Isn't this a dupe of #169921?

Well, that bug was originally for the suite's Mail/News, then it was retargeted 
to TB after this bug opened.  I've just changed that bug to a Core/Widgets bug 
for the reasons described there, and I'm setting a dependency here.
Depends on: 169921
OS: Windows XP → All
Hardware: PC → All
*** Bug 277289 has been marked as a duplicate of this bug. ***
Ctrl+arrow then ctrl+space work now. I fixed this a while back, not sure the bug #.
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → WORKSFORME
V -- thanks, Aaron!
Status: RESOLVED → VERIFIED
You need to log in before you can comment on or make changes to this bug.