Skip to content

Commit e4d15c3

Browse files
committed
Fix - always show break once tree draw breaked
1 parent 4b5e516 commit e4d15c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/draw/TTree.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ TDrawSelector.prototype.ShowProgress = function(value) {
6666
else if (this.aver_diff < 0.01)
6767
ndig = 1;
6868

69-
treeShowProgress(this, `TTree draw ${(value * 100).toFixed(ndig)} % `);
69+
treeShowProgress(this, this._break ? 'Breaking ... ' : `TTree draw ${(value * 100).toFixed(ndig)} % `);
7070
};
7171

7272
/** @summary Draw result of tree drawing

0 commit comments

Comments
 (0)