Skip to content

Commit

Permalink
Fix - tree drawing logging
Browse files Browse the repository at this point in the history
Do not use special tmout value
  • Loading branch information
linev committed Sep 11, 2024
1 parent b793226 commit 6174ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/draw/TTree.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ TDrawSelector.prototype.ShowProgress = function(value) {
msg = `TTree draw ${(value * 100).toFixed(ndig)} % `;
}

showProgress(msg, -1, () => { this._break = 1; });
showProgress(msg, 0, () => { this._break = 1; });
return ret;
};

Expand Down

0 comments on commit 6174ce1

Please sign in to comment.