Version: (using KDE KDE 3.2.1) Installed from: Compiled From Sources Compiler: GCC 3.3.3 OS: Linux When the kwikdisk icon is clicked, three of the icons (for configure kwikdisk, help and quit) are much too large, larger than the other icons.
Created attachment 5590 [details] Fix icon size Attached a fix
CVS commit by mcamen: Fix icon size. Patch by felixhaedicke@web.de. CCMAIL: 79385-done@bugs.kde.org M +3 -3 kwikdisk.cpp 1.52 --- kdeutils/kdf/kwikdisk.cpp #1.51:1.52 @@ -426,9 +426,9 @@ void DockWidget::updateDFDone( void ) mPopupMenu->insertItem( - BarIcon( "configure" ), + SmallIcon( "configure" ), i18n("&Configure KwikDisk..."), this, SLOT(settingsBtnClicked()),0); mPopupMenu->insertItem( - BarIcon( "help" ), + SmallIcon( "help" ), KStdGuiItem::help().text(), this, SLOT(invokeHelp()),0); @@ -436,5 +436,5 @@ void DockWidget::updateDFDone( void ) mPopupMenu->insertItem( - BarIcon( "exit" ), + SmallIcon( "exit" ), KStdGuiItem::quit().text(), this, SLOT(quit()) );
KDE >= 3.2.3 will contain the fix (KDE 3.2.2 is already tagged).