Git commit 132886ef080d8f7eae57b54e444b65eeeb2057e9 by Jan Kundr?t. Committed on 25/03/2014 at 08:26. Pushed by jkt into branch 'master'.
GUI: move the attachment indication to the left M +3 -0 src/Gui/MsgListView.cpp http://commits.kde.org/trojita/132886ef080d8f7eae57b54e444b65eeeb2057e9 diff --git a/src/Gui/MsgListView.cpp b/src/Gui/MsgListView.cpp index 0cfb7b2..cc97edb 100644 --- a/src/Gui/MsgListView.cpp +++ b/src/Gui/MsgListView.cpp @@ -355,6 +355,9 @@ void MsgListView::slotHandleNewColumns(int oldCount, int newCount) case Imap::Mailbox::MsgListModel::FLAGGED: header()->moveSection(i,0); break; + case Imap::Mailbox::MsgListModel::ATTACHMENT: + header()->moveSection(i,0); + break; } setColumnWidth(i, sizeHintForColumn(i));
