mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07: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(actionCreate);
|
||||||
myFinishedListMenu.addAction(actionRefreshAll);
|
myFinishedListMenu.addAction(actionRefreshAll);
|
||||||
myFinishedListMenu.exec(mapToGlobal(pos)+QPoint(10,55));
|
myFinishedListMenu.exec(mapToGlobal(pos)+QPoint(10,33));
|
||||||
}
|
}
|
||||||
|
|
||||||
// add a stream by a button
|
// add a stream by a button
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
}else {
|
}else {
|
||||||
bool ok;
|
bool ok;
|
||||||
int index = listStreams->currentRow();
|
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) {
|
if(ok) {
|
||||||
rssmanager.setAlias(index, newAlias);
|
rssmanager.setAlias(index, newAlias);
|
||||||
refreshStreamList();
|
refreshStreamList();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue