Summary: | resizing mail preview garbles MIME-Tree display | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Martin Koller <martin> |
Component: | GUI | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | amitshah, arnaud, carstenlohrke, eggert, mikmach, thomas-ml, tringo |
Priority: | NOR | ||
Version First Reported In: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | snapshot |
Description
Martin Koller
2003-09-14 12:45:44 UTC
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. |