Closed
Bug 124269
Opened 23 years ago
Closed 23 years ago
Selecting a folder doesn't enable ctrl-a to select all messages anymore
Categories
(SeaMonkey :: MailNews: Message Display, defect)
SeaMonkey
MailNews: Message Display
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: selmer, Assigned: sspitzer)
References
Details
(Keywords: regression)
Attachments
(1 file, 2 obsolete files)
|
1.79 KB,
patch
|
racham
:
review+
Bienvenu
:
superreview+
asa
:
approval+
|
Details | Diff | Splinter Review |
2/4 06 098 build
Goto your mail 3 pane.
Click on a folder to select it.
Click on ctrl-a to select all messages.
note that the ctrl-a is ignored.
I had to select a message to get focus into the thread pane before ctrl-a would
work. I believe this is a regression.
| Reporter | ||
Updated•23 years ago
|
Keywords: regression
Comment 1•23 years ago
|
||
same on windows98SE build 20020530
but i've seen this on all bulids from M14 until now
ctrl+s and then ctrl+a selects all but delete botton is'n active
*** Bug 142618 has been marked as a duplicate of this bug. ***
| Assignee | ||
Comment 4•23 years ago
|
||
the problem is the folder pane has focus, instead of the thread pane.
but select all / ctrl a makes no sense for our folder pane, which only allows
single selection at this time.
I'm going to come up with a fix that makes select all / ctrl a do the right
thing when the folder pane has focus.
My apologies for letting this rot for so long.
asa / brendan, maybe this can squeek into the upcoming mozilla release?
| Assignee | ||
Comment 5•23 years ago
|
||
for select all, forward the command to the thread pane controller.
Comment 6•23 years ago
|
||
Yes, we should get this in for 1.1 if possible. Adding to the 1.1 tracking bug.
Blocks: 1.1
Comment 7•23 years ago
|
||
Comment on attachment 94205 [details] [diff] [review]
patch
sr=bienvenu - is it possible not to have a thread pane controller?
Attachment #94205 -
Flags: superreview+
| Assignee | ||
Comment 8•23 years ago
|
||
currently, our three pane has both folder and thread pane.
the thread pane control is defined in that same file, mail3PaneWindowCommands.js
Comment on attachment 94205 [details] [diff] [review]
patch
r=bhuvan
Attachment #94205 -
Flags: review+
Comment 10•23 years ago
|
||
Comment on attachment 94205 [details] [diff] [review]
patch
a=asa (on behalf of drivers) for checkin to 1.1 branch
Attachment #94205 -
Flags: approval+
| Assignee | ||
Comment 11•23 years ago
|
||
new patch. this is what I checked into the trunk.
it makes it so "select all" is disabled when there is no view (like bienvenu
pointed out). this can happen when there is a server selected in the folder
pane so we are showing account central.
also, if we do forward the command, we then change focus.
"ctrl a / select all" is like clicking on the thread pane and doing select all.
a common usage is to select a folder (say SPAM) in the folder pane, and then to
do select all, delete. if we don't switch focus, the delete will be for the
selected folder in the folder pane, which is not desired.
Attachment #94205 -
Attachment is obsolete: true
Comment 12•23 years ago
|
||
how about just
return (gDBView != null);
+ if (!gDBView)
+ return false;
+ else
+ return true;
| Assignee | ||
Comment 13•23 years ago
|
||
Attachment #94302 -
Attachment is obsolete: true
| Assignee | ||
Updated•23 years ago
|
OS: Windows NT → All
Hardware: PC → All
Comment 14•23 years ago
|
||
Comment on attachment 94337 [details] [diff] [review]
updated patch, following david's suggestion.
thx, sr=bienvenu
Attachment #94337 -
Flags: superreview+
Comment 15•23 years ago
|
||
Comment on attachment 94337 [details] [diff] [review]
updated patch, following david's suggestion.
a=asa (on behalf of drivers) for checkin to 1.1
Attachment #94337 -
Flags: approval+
Comment 16•23 years ago
|
||
Comment on attachment 94337 [details] [diff] [review]
updated patch, following david's suggestion.
minor nit :
please add semicolon after
return (gDBView != null)
thanks,
Bhuvan
Attachment #94337 -
Flags: review+
| Assignee | ||
Comment 17•23 years ago
|
||
fixed on the trunk and the 1.1 branch.
I added the ; like racham suggested before checking in.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Comment 18•23 years ago
|
||
OK with nov1 commercila trunk: win98, mac OS 10.2, linux rh6.2
Status: RESOLVED → VERIFIED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•