mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Fix '&' character in label name becomes accelerator key, closes #3454.
This commit is contained in:
parent
5281593bb6
commit
58b600198f
1 changed files with 3 additions and 1 deletions
|
@ -761,8 +761,10 @@ void TransferListWidget::displayListMenu(const QPoint&)
|
|||
labelActions << labelMenu->addAction(GuiIconProvider::instance()->getIcon("list-add"), tr("New...", "New label..."));
|
||||
labelActions << labelMenu->addAction(GuiIconProvider::instance()->getIcon("edit-clear"), tr("Reset", "Reset label"));
|
||||
labelMenu->addSeparator();
|
||||
foreach (const QString &label, customLabels)
|
||||
foreach (QString label, customLabels) {
|
||||
label.replace('&', "&&"); // avoid '&' becomes accelerator key
|
||||
labelActions << labelMenu->addAction(GuiIconProvider::instance()->getIcon("inode-directory"), label);
|
||||
}
|
||||
listMenu.addSeparator();
|
||||
if (one_not_seed)
|
||||
listMenu.addAction(&actionSet_download_limit);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue