mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
- Fixed right click menu disposition in RSS
- Improved some sentences in dialogs
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user