mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 03:39:39 +03:00
- Fixed right click menu disposition in RSS
- Improved some sentences in dialogs
This commit is contained in:
parent
76708c96df
commit
bfe7010350
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@
|
|||
}
|
||||
myFinishedListMenu.addAction(actionCreate);
|
||||
myFinishedListMenu.addAction(actionRefreshAll);
|
||||
myFinishedListMenu.exec(mapToGlobal(pos)+QPoint(10,55));
|
||||
myFinishedListMenu.exec(mapToGlobal(pos)+QPoint(10,33));
|
||||
}
|
||||
|
||||
// add a stream by a button
|
||||
|
@ -103,7 +103,7 @@
|
|||
}else {
|
||||
bool ok;
|
||||
int index = listStreams->currentRow();
|
||||
QString newAlias = QInputDialog::getText(this, tr("Please type a rss stream alias"), tr("Stream Alias:"), QLineEdit::Normal, rssmanager.getStream(index)->getAlias(), &ok);
|
||||
QString newAlias = QInputDialog::getText(this, tr("Please choose a new name for this stream"), tr("New stream name:"), QLineEdit::Normal, rssmanager.getStream(index)->getAlias(), &ok);
|
||||
if(ok) {
|
||||
rssmanager.setAlias(index, newAlias);
|
||||
refreshStreamList();
|
||||
|
|
Loading…
Reference in a new issue