Summary: | Checkboxes in attachements are not deleted. | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Thomas Zander <zander> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.7 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Thomas Zander
2004-09-01 09:28:08 UTC
CVS commit by giessl: When Sign/Encrypt columns are hidden, the checkboxes should be hidden too... BUG: 88576 M +2 -0 kmcomposewin.cpp 1.882 --- kdepim/kmail/kmcomposewin.cpp #1.881:1.882 @@ -4064,8 +4064,10 @@ void KMAtmListViewItem::enableCryptoCBs( mCBEncryptEnabled = on; mCBEncrypt->setEnabled( on ); + mCBEncrypt->setShown( on ); } if( mCBSign ) { mCBSignEnabled = on; mCBSign->setEnabled( on ); + mCBSign->setShown( on ); } } |