patch-src_mainwindow_cpp 710 B

12345678910111213141516
  1. $OpenBSD: patch-src_mainwindow_cpp,v 1.2 2014/12/01 14:35:59 dcoppa Exp $
  2. Fix "Info" icon
  3. --- src/mainwindow.cpp.orig Mon Dec 1 05:25:29 2014
  4. +++ src/mainwindow.cpp Mon Dec 1 05:26:10 2014
  5. @@ -192,7 +192,7 @@ void MainWindow::createActions() {
  6. actions->insert("back", backAct);
  7. connect(backAct, SIGNAL(triggered()), SLOT(goBack()));
  8. - QIcon icon = IconUtils::icon(QStringList() << "audio-headphones" << "gtk-info" << "help-about");
  9. + QIcon icon = IconUtils::icon("help-about");
  10. contextualAct = new QAction(icon, tr("&Info"), this);
  11. contextualAct->setStatusTip(tr("Show information about the current track"));
  12. contextualAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_I));