From eff146c3fc68222a6e100c3aaca9de75cf0da55e Mon Sep 17 00:00:00 2001 From: Karl-Heinz Zimmer Date: Mon, 29 Apr 2002 05:55:16 +0000 Subject: [PATCH] Bugfix: also do not hide Mime Tree widget for layout #2 (== Mime Tree below Folders) svn path=/trunk/kdenetwork/kmail/; revision=152646 --- kmmainwin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kmmainwin.cpp b/kmmainwin.cpp index 2e710b2db..7eda7f1a3 100644 --- a/kmmainwin.cpp +++ b/kmmainwin.cpp @@ -1569,7 +1569,8 @@ void KMMainWin::folderSelected(KMFolder* aFolder, bool jumpToUnread) mMsgView->setMsg( 0, TRUE ); if( mHeaders && mWindowLayout < 3 ) mHeaders->hide(); - if( mShowMIME && mMimePartTree && mWindowLayout != 3 ) + if( mShowMIME && mMimePartTree + && (mWindowLayout != 2) && (mWindowLayout != 3) ) mMimePartTree->hide(); mMsgView->displayAboutPage(); } else if( !mFolder ) {