Mar-10-2019, 09:14 PM
(This post was last modified: Mar-10-2019, 09:14 PM by mrdominikku.)
Found solution..
The signal was emitted but the value that is emitted is always almost zero as:
0 < worker.emit(my_list.index(a)/len(my_list)) < 1, where len(my_list) = 11, so 1/11 = 0.09
Added worker.emit(my_list.index(a)/len(my_list)*100)
SORRY if I didn't mentioned that! Thread can be closed :)
The signal was emitted but the value that is emitted is always almost zero as:
0 < worker.emit(my_list.index(a)/len(my_list)) < 1, where len(my_list) = 11, so 1/11 = 0.09
Added worker.emit(my_list.index(a)/len(my_list)*100)
SORRY if I didn't mentioned that! Thread can be closed :)