Bug 88576

Summary: Checkboxes in attachements are not deleted.
Product: [Applications] kmail Reporter: Thomas Zander <zander>
Component: generalAssignee: 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:

Description Thomas Zander 2004-09-01 09:28:08 UTC
Version:           1.7 (using KDE 3.3.0, compiled sources)
Compiler:          gcc version 3.3.2 (Debian)
OS:                Linux (i686) release 2.6.1dell-optiplex

When I have an attachment and 'OpenPGP/MIME' signing method I have 2 checkboxes in my attachements list of a new email.

If I change the combobox to 'inline OpenPGP (deprecated)' the table changes the amount of columns.

The checkboxes are _not_ removed from the screen, however. They stay visible but you can't click on them.

I forced a redraw (by placing another window over it) and the checkboxes were redrawn, but not active, afterwards.

In effect I have a 'Type' column with 'PNG Im[ ]'  where the [] is the first checkbox..
Comment 1 Sandro Giessl 2004-11-02 13:00:57 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 );
   }
 }