Git commit 10d1615d954b798d80aa78d4b18e884b5d768c18 by Jan Kundr?t. Committed on 26/05/2013 at 19:43. Pushed by jkt into branch 'master'.
GUI: fix the icon for the "go back" button in the one-at-time layout M +1 -1 src/Gui/Window.cpp http://commits.kde.org/trojita/10d1615d954b798d80aa78d4b18e884b5d768c18 diff --git a/src/Gui/Window.cpp b/src/Gui/Window.cpp index 1fb3715..6784b9f 100644 --- a/src/Gui/Window.cpp +++ b/src/Gui/Window.cpp @@ -244,7 +244,7 @@ void MainWindow::createActions() configSettings = new QAction(loadIcon(QLatin1String("configure")), tr("&Settings..."), this); connect(configSettings, SIGNAL(triggered()), this, SLOT(slotShowSettings())); - m_oneAtTimeGoBack = new QAction(loadIcon(QLatin1String("back")), tr("Navigate Back"), this); + m_oneAtTimeGoBack = new QAction(loadIcon(QLatin1String("go-previous")), tr("Navigate Back"), this); m_oneAtTimeGoBack->setShortcut(QKeySequence::Back); m_oneAtTimeGoBack->setEnabled(false); connect(m_oneAtTimeGoBack, SIGNAL(triggered()), this, SLOT(slotOneAtTimeGoBack()));
