diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index a176d71..cb02652 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -917,7 +917,10 @@ void MainWindow::buildMenus() // still degrades to text through the null check below. const QHash<QString, QString> themeIcons = { { QStringLiteral("sync"), QStringLiteral("mail-receive") }, - { QStringLiteral("archive"), QStringLiteral("mail-mark-read") }, + // NOT mail-mark-read, which mark_all_read below uses. The two shared it + // in 0.12.0, and with the toolbar icon-only the icon is the whole + // control: two buttons with different consequences looked identical. + { QStringLiteral("archive"), QStringLiteral("mail-archive") }, { QStringLiteral("delete"), QStringLiteral("edit-delete") }, { QStringLiteral("undo"), QStringLiteral("edit-undo") }, { QStringLiteral("spam"), QStringLiteral("mail-mark-junk") }, |
