Bug 88576 - Checkboxes in attachements are not deleted.
Summary: Checkboxes in attachements are not deleted.
Status: RESOLVED FIXED
Alias: None
Product: kmail
Classification: Applications
Component: general (show other bugs)
Version: 1.7
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-09-01 09:28 UTC by Thomas Zander
Modified: 2007-09-14 12:17 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 );
   }
 }