Bug 79385

Summary: some icons in kwikdisk menu are too large (patch included)
Product: kwikdisk Reporter: felixhaedicke
Component: generalAssignee: Michael Kropfberger <michael.kropfberger>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:
Attachments: Fix icon size

Description felixhaedicke 2004-04-10 16:01:42 UTC
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.
Comment 1 felixhaedicke 2004-04-10 16:02:37 UTC
Created attachment 5590 [details]
Fix icon size

Attached a fix
Comment 2 mcamen 2004-04-12 18:30:52 UTC
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()) );
 


Comment 3 mcamen 2004-04-12 18:35:15 UTC
KDE >= 3.2.3 will contain the fix (KDE 3.2.2 is already tagged).