Closed
Bug 249337
Opened 20 years ago
Closed 20 years ago
Unread count is > 0, but nothing displays in the messages pane
Categories
(Thunderbird :: Mail Window Front End, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Thunderbird0.8
People
(Reporter: jon.baumgartner, Assigned: mscott)
Details
Attachments
(3 files)
39.51 KB,
image/png
|
Details | |
1.50 KB,
patch
|
Details | Diff | Splinter Review | |
746 bytes,
patch
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7) Gecko/20040628 Firefox/0.9.1
Build Identifier: Thunderbird version 0.7+ (20040629) on OS X 10.3.4
See attachment. I have "Unread" selected as the filter for view. Thunderbird
shows the Junk folder in bold, indicating there is (1) unread message. When I
click on the folder, nothing appears on the right.
If I choose "All" the message appears, and if I then select "Unread" again, the
message also appears.
Reproducible: Sometimes
Steps to Reproduce:
1. Receive new mail.
2. See which folders are bold.
3. Click on the folder(s).
Actual Results:
Sometimes the above behavior occurs. Sometimes the messages are properly
displayed. In all cases, after switching the view around, it works.
Expected Results:
The messages should be immediately visible.
Reporter | ||
Comment 1•20 years ago
|
||
Assignee | ||
Comment 2•20 years ago
|
||
I think my new quick search box may have broken mail views.
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Target Milestone: --- → Thunderbird0.8
Reporter | ||
Comment 3•20 years ago
|
||
It definitely started happening with very recent builds.
Also, I just noticed that if I leave it on "All" I don't see this behavior.
Assignee | ||
Comment 4•20 years ago
|
||
Assignee | ||
Comment 5•20 years ago
|
||
I just checked this possible fix in. It makes us more agressive than I'd like
when it comes to refreshing the quick search view but it does fix the bug.
Status: ASSIGNED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 6•20 years ago
|
||
I haven't had time to test this in the debug build yet, but I just tested this
on the 20040701 Windows build, and there's no change. Did it not make it in to
the build? Should I re-test tomorrow with the 20040702 build?
Reporter | ||
Comment 7•20 years ago
|
||
Still broken with the version 0.7+ (20040702) build.
Reporter | ||
Comment 8•20 years ago
|
||
Scott, you said you checked this in, but the recent binaries still have this
problem. Is this only fixed with the patch?
Comment 9•20 years ago
|
||
This still happens to me as well on Thunderbird version 0.7+ (20040807) under
Windows XP Professional Service Pack 2.
After some hunting, the problem appears to be in searchBar.js, specifically the
code blocks:
491 function onSearchInput(returnKeyHit)
492 {
493 if (gSearchInput.showingSearchCriteria)
494 return;
535 function Search(str)
536 {
537 if (gSearchInput.showingSearchCriteria)
538 return;
The problem is that the folder listener calls Search("") when a folder is
selected by the user and by default, the search bar is set to show the search
criteria hint text. In this case the if statements above cause the search to be
aborted.
I was able to fix it by editing the lines to read:
493 if (gSearchInput.showingSearchCriteria && !(returnKeyHit &&
gSearchInput.value == "") )
537 if (gSearchInput.showingSearchCriteria && str != "")
Assignee | ||
Updated•20 years ago
|
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Assignee | ||
Comment 10•20 years ago
|
||
this suggested fix works for me. Hopefully it won't break anything since this
code sure seems to be awfully fragile.
Assignee | ||
Updated•20 years ago
|
Status: REOPENED → RESOLVED
Closed: 20 years ago → 20 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•