File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11# JSROOT changelog
22
3+ ## Changes in 4.4.2
4+ 1 . Fix - statistic collection for TH2
5+ 2 . Fix - correct handling of empty TList in browser/inspector
6+ 3 . Fix - support TFolder in browser/inspector
7+
8+
39## Changes in 4.4.1
4101 . Fix - colz palette resize when drawing histogram second time
5112 . Fix - use embeded in TCanvas color for background color of canvas itself
Original file line number Diff line number Diff line change 66596659 continue ;
66606660 }
66616661
6662- if ( ( typeof fld == 'object' ) && ( '_typename' in fld )
6663- && ( ( fld . _typename == 'TList' ) || ( fld . _typename == 'TObjArray' ) ) ) {
6662+ if ( ( typeof fld == 'object' ) && ( '_typename' in fld ) ) {
6663+ if ( ( fld . _typename == 'TList' ) || ( fld . _typename == 'TObjArray' ) ) {
66646664 item . _kind = item . _title = "ROOT." + fld . _typename ;
66656665 fld = fld . arr ;
6666+ } else if ( fld . _typename == 'TFolder' ) {
6667+ item . _kind = item . _title = "ROOT." + fld . _typename ;
6668+ fld = fld . fFolders . arr ;
6669+ }
66666670 }
66676671
66686672 var proto = Object . prototype . toString . apply ( fld ) ;
You can’t perform that action at this time.
0 commit comments