[Bug 117785] kmails stalls on "Retrieving Folder Contents" with IMAP folders
Stephan Kulow <[email protected]>
| Newsgroups | gmane.comp.kde.devel.kmail |
|---|---|
| Message-ID | <[email protected]> |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=117785
coolo kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From coolo kde org 2007-03-20 21:22 -------
SVN commit 644741 by coolo:
this checks looks nonsense as the ptr is regenerated on
every folder select
BUG: 117785
M +1 -1 kmmainwidget.cpp
--- branches/KDE/3.5/kdepim/kmail/kmmainwidget.cpp #644740:644741
@ -1904,7 +1904,7 @
bool newFolder = ( mFolder != aFolder );
bool isNewImapFolder = aFolder && aFolder->folderType() == KMFolderTypeImap && newFolder;
if( !mFolder
- || ( !isNewImapFolder && mShowBusySplashTimer && !mShowBusySplashTimer->isActive() )
+ || ( !isNewImapFolder && mShowBusySplashTimer )
|| ( newFolder && mShowingOfflineScreen && !( isNewImapFolder && kmkernel->isOffline() ) ) ) {
if ( mMsgView ) {
mMsgView->enableMsgDisplay();