mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
- Fixed double-click default action
This commit is contained in:
parent
38ca306499
commit
0ce114a7f8
1 changed files with 2 additions and 2 deletions
|
@ -975,9 +975,9 @@ void GUI::torrentDoubleClicked(QString hash, bool finished) {
|
||||||
settings.beginGroup("Preferences");
|
settings.beginGroup("Preferences");
|
||||||
settings.beginGroup("Downloads");
|
settings.beginGroup("Downloads");
|
||||||
if(finished) {
|
if(finished) {
|
||||||
action = settings.value(QString::fromUtf8("DblClOnTorFN"), 1).toInt();
|
action = settings.value(QString::fromUtf8("DblClOnTorFN"), 0).toInt();
|
||||||
} else {
|
} else {
|
||||||
action = settings.value(QString::fromUtf8("DblClOnTorDl"), 1).toInt();
|
action = settings.value(QString::fromUtf8("DblClOnTorDl"), 0).toInt();
|
||||||
}
|
}
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue