-rw-r--r-- | noncore/apps/dagger/configuredlg.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/dagger/configuredlg.cpp b/noncore/apps/dagger/configuredlg.cpp index 535659d..42bc6da 100644 --- a/noncore/apps/dagger/configuredlg.cpp +++ b/noncore/apps/dagger/configuredlg.cpp @@ -53,3 +53,5 @@ ConfigureDlg::ConfigureDlg( QWidget *parent, const QString &swordPath, bool alwa grid->addWidget( m_swordPath, 1, 0 ); - QPushButton *btn = new QPushButton( Resource::loadPixmap( "folder" ), QString::null, widget ); + QPixmap pic; + pic.convertFromImage( Resource::loadImage( "folder" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); + QPushButton *btn = new QPushButton( pic, QString::null, widget ); btn->setMaximumWidth( btn->height() ); @@ -58,3 +60,3 @@ ConfigureDlg::ConfigureDlg( QWidget *parent, const QString &swordPath, bool alwa grid->addWidget( btn, 1, 1 ); - + label = new QLabel( tr( "(Note: Dagger must be restarted for this option to take affect.)" ), widget ); |