diff --git a/YACReader/options_dialog.cpp b/YACReader/options_dialog.cpp index 37d25792..3a6e751f 100644 --- a/YACReader/options_dialog.cpp +++ b/YACReader/options_dialog.cpp @@ -47,7 +47,7 @@ OptionsDialog::OptionsDialog(QWidget * parent) QHBoxLayout * path = new QHBoxLayout(); path->addWidget(pathEdit = new QLineEdit()); - path->addWidget(pathFindButton = new QPushButton(QIcon(":/images/comicFolder.png"),"")); + path->addWidget(pathFindButton = new QPushButton(QIcon(":/images/find_folder.png"),"")); pathBox->setLayout(path); connect(pathFindButton,SIGNAL(clicked()),this,SLOT(findFolder())); @@ -280,7 +280,7 @@ void OptionsDialog::resetImageConfig() void OptionsDialog::show() { - //TODO solucionar el tema de las settings, esto sólo debería aparecer en una única línea de código + //TODO solucionar el tema de las settings, esto sólo debería aparecer en una única línea de código QSettings *s = new QSettings(YACReader::getSettingsPath()+"/YACReader.ini",QSettings::IniFormat); fitToWidthRatioS->disconnect(); fitToWidthRatioS->setSliderPosition(settings->value(FIT_TO_WIDTH_RATIO).toFloat()*100); diff --git a/YACReader/shortcuts_dialog.cpp b/YACReader/shortcuts_dialog.cpp index dd7441cf..e88c91a0 100644 --- a/YACReader/shortcuts_dialog.cpp +++ b/YACReader/shortcuts_dialog.cpp @@ -37,19 +37,7 @@ ShortcutsDialog::ShortcutsDialog(QWidget * parent) mainLayout->addLayout(shortcutsLayout); mainLayout->addLayout(bottomLayout); - QHBoxLayout *imgMainLayout = new QHBoxLayout; - QLabel * imgLabel = new QLabel(); - QPixmap p(":/images/shortcuts.png"); - imgLabel->setPixmap(p); - - QVBoxLayout * imgLayout = new QVBoxLayout; - imgLayout->addWidget(imgLabel); - imgLayout->addStretch(); - - imgMainLayout->addLayout(imgLayout); - imgMainLayout->addLayout(mainLayout); - - setLayout(imgMainLayout); + setLayout(mainLayout); setFixedSize(QSize(700,500)); diff --git a/YACReader/yacreader_images.qrc b/YACReader/yacreader_images.qrc index ca8f9714..d712c04e 100644 --- a/YACReader/yacreader_images.qrc +++ b/YACReader/yacreader_images.qrc @@ -2,7 +2,7 @@ ../images/icon.png ../images/goto.png - ../images/comicFolder.png + ../images/find_folder.png ../images/flow1.png ../images/flow2.png ../images/flow3.png @@ -59,7 +59,6 @@ ../images/helpImages/deleteLibrary.png ../images/helpImages/properties.png ../images/helpImages/doublePage.png - ../images/helpImages/shortcuts.png ../images/helpImages/keyboard.png ../images/helpImages/mouse.png ../images/helpImages/speaker.png diff --git a/images/goto.png b/images/goto.png index 6f59516a..d99a3d01 100644 Binary files a/images/goto.png and b/images/goto.png differ