mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-30 12:18:05 -06:00
Revise label wordings
Such that action subject is truly unambiguous to the user. PR #22894.
This commit is contained in:
@@ -827,11 +827,11 @@ void SearchWidget::showTabMenu(const int index)
|
||||
if (auto *searchJobWidget = static_cast<SearchJobWidget *>(m_ui->tabWidget->widget(index));
|
||||
searchJobWidget->status() != SearchJobWidget::Status::Ongoing)
|
||||
{
|
||||
menu->addAction(tr("Refresh"), this, [this, searchJobWidget] { refreshTab(searchJobWidget); });
|
||||
menu->addAction(tr("Refresh tab"), this, [this, searchJobWidget] { refreshTab(searchJobWidget); });
|
||||
}
|
||||
else
|
||||
{
|
||||
menu->addAction(tr("Stop"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); });
|
||||
menu->addAction(tr("Stop search"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); });
|
||||
}
|
||||
|
||||
menu->addSeparator();
|
||||
|
||||
Reference in New Issue
Block a user