1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-27 15:04:36 +00:00

Sort labels in right click menu

This commit is contained in:
Christophe Dumez 2010-05-12 19:03:31 +00:00
parent ea99f44893
commit bf73c47bc5

View File

@ -1086,7 +1086,8 @@ void TransferListWidget::displayListMenu(const QPoint&) {
if(selectedIndexes.size() == 1)
listMenu.addAction(&actionRename);
// Label Menu
const QStringList &customLabels = getCustomLabels();
QStringList customLabels = getCustomLabels();
customLabels.sort();
QList<QAction*> labelActions;
QMenu *labelMenu = listMenu.addMenu(QIcon(":/Icons/oxygen/feed-subscribe.png"), tr("Label"));
labelActions << labelMenu->addAction(QIcon(":/Icons/oxygen/list-add.png"), tr("New...", "New label..."));