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..
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 ); } }