mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-09 07:40:19 +08:00
- BUGFIX: Fixed a bug in children update when changing files priorities
This commit is contained in:
parent
8ea34135e4
commit
9ca02aad88
1
TODO
1
TODO
@ -59,4 +59,5 @@
|
||||
rc6->rc7 changelog:
|
||||
- BUGFIX: Catching DHT exception in case there is a problem
|
||||
- BUGFIX: Removed build dependency on Python
|
||||
- BUGFIX: Fixed a bug in children update when changing files priorities
|
||||
- I18N: Updated Turkish translation
|
@ -174,14 +174,14 @@ class PropListDelegate: public QItemDelegate {
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
if(old_val != NORMAL){
|
||||
model->setData(index, QVariant(NORMAL));
|
||||
if(filteredFilesChanged != 0)
|
||||
*filteredFilesChanged = true;
|
||||
} else {
|
||||
// if(old_val != NORMAL){
|
||||
// model->setData(index, QVariant(NORMAL));
|
||||
// if(filteredFilesChanged != 0)
|
||||
// *filteredFilesChanged = true;
|
||||
// } else {
|
||||
model->setData(index, QVariant(HIGH));
|
||||
model->setData(index, QVariant(NORMAL));
|
||||
}
|
||||
// }
|
||||
break;
|
||||
case 2:
|
||||
if(old_val != HIGH){
|
||||
|
@ -3,7 +3,7 @@ LANG_PATH = lang
|
||||
ICONS_PATH = Icons
|
||||
|
||||
#Set the following variable to 1 to enable debug
|
||||
DEBUG_MODE = 0
|
||||
DEBUG_MODE = 1
|
||||
|
||||
# Global
|
||||
TEMPLATE = app
|
||||
@ -30,7 +30,7 @@ contains(DEBUG_MODE, 0){
|
||||
|
||||
# For libtorrent stuff
|
||||
# (comment this if you are using libtorrent with debug enabled)
|
||||
DEFINES += NDEBUG
|
||||
#DEFINES += NDEBUG
|
||||
|
||||
# Install
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user