Version: 1.5.9 (using KDE 3.1.9) Compiler: gcc version 2.95.3 20010315 (SuSE) OS: Linux (i686) release 2.4.18-4GB In Layout I have: Long folder list, MIME at bottom, Always show, Message preview below the message list. In principle that's ok, but when I move the splitter between message list and message preview at release the mouse, suddenly in the mime-tree area instead of the MIME tree I see also a part of the message preview. I attach a snapshot
Created attachment 2452 [details] snapshot
Subject: Re: resizing mail preview garbles MIME-Tree display I'd say that's a bug in QSplitter. AFAI can tell we don't do anything wrong.
same here, qt 3.2.1, todays cvs kdelibs/base/network/pim
*** Bug 65220 has been marked as a duplicate of this bug. ***
*** Bug 66736 has been marked as a duplicate of this bug. ***
*** Bug 67830 has been marked as a duplicate of this bug. ***
*** Bug 67924 has been marked as a duplicate of this bug. ***
*** Bug 67970 has been marked as a duplicate of this bug. ***
Such a behavior is observed when I switch views between contacts and kmail in the kontact window; with a message with attachments selected in kmail.
*** Bug 67008 has been marked as a duplicate of this bug. ***
*** Bug 68762 has been marked as a duplicate of this bug. ***
This patch seems to solve the problem for KDE cvs HEAD as of 11/21: --- kdepim/kmail/kmreaderwin.cpp.old 2003-11-21 15:12:02.308607584 -0600 +++ kdepim/kmail/kmreaderwin.cpp 2003-11-21 15:05:06.000000000 -0600 @@ -1385,7 +1385,7 @@ void KMReaderWin::slotDelayedResize() { // mViewer->widget()->setGeometry(0, 0, width(), height()); - mBox->setGeometry(0, 0, width(), height()); + mSplitter->setGeometry(0, 0, width(), height()); } When a KMReaderWin is resized, the old code makes mBox, which only contains the message preview window, the size of the KMReaderWin. The patch makes the mSplitter, which contains both the mime tree and the message preview, resize.
Subject: kdepim/kmail CVS commit by kloecker: Fix bug 64251: resizing mail preview garbles MIME-Tree display Patch by Jeffrey McGee CCMAIL:64251-fixed@bugs.kde.org M +3 -4 kmreaderwin.cpp 1.724 --- kdepim/kmail/kmreaderwin.cpp #1.723:1.724 @@ -1394,6 +1394,5 @@ void KMReaderWin::resizeEvent(QResizeEve void KMReaderWin::slotDelayedResize() { -// mViewer->widget()->setGeometry(0, 0, width(), height()); - mBox->setGeometry(0, 0, width(), height()); + mSplitter->setGeometry(0, 0, width(), height()); }
Can confirm fix in KDE 3.2 beta 2. Well done guys, this is looking like an excellent release.