mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Sort labels in right click menu
This commit is contained in:
parent
ea99f44893
commit
bf73c47bc5
1 changed files with 2 additions and 1 deletions
|
@ -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..."));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue