mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
Support raising window when UI is locked
This commit is contained in:
@@ -961,11 +961,13 @@ void MainWindow::processParams(const QStringList& params) {
|
|||||||
QBtSession::instance()->downloadFromUrl(param);
|
QBtSession::instance()->downloadFromUrl(param);
|
||||||
}else{
|
}else{
|
||||||
if(param.startsWith("qbt://show", Qt::CaseInsensitive)) {
|
if(param.startsWith("qbt://show", Qt::CaseInsensitive)) {
|
||||||
if(!ui_locked) {
|
if(ui_locked) {
|
||||||
|
if(!unlockUI())
|
||||||
|
return;
|
||||||
|
}
|
||||||
show();
|
show();
|
||||||
activateWindow();
|
activateWindow();
|
||||||
raise();
|
raise();
|
||||||
}
|
|
||||||
return; // Do not process more params
|
return; // Do not process more params
|
||||||
}
|
}
|
||||||
if (param.startsWith("bc://bt/", Qt::CaseInsensitive)) {
|
if (param.startsWith("bc://bt/", Qt::CaseInsensitive)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user