File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11
11
7 . Reuse statistic from histogram itself, when no axis selection done
12
12
8 . Support log/lin z scale for color drawing
13
13
9 . Implement interactive z-scale selection on TPaletteAxis
14
+ 10 . Allow to redraw item with other draw options (before one should clear drawings)
15
+ 11 . Several improvements in THttpServer user interface - repair hierarchy reload,
16
+ hide unsupported context menu entries, status line update
14
17
15
18
16
19
## Changes in 3.4
Original file line number Diff line number Diff line change 301
301
302
302
if ( ( status_item != null ) && ( JSROOT . GetUrlOption ( 'nostatus' ) == null ) ) {
303
303
var func = JSROOT . findFunction ( status_item . _status ) ;
304
- var hdiv = func == null ? null : JSROOT . Painter . ConfigureHSeparator ( 30 ) ;
305
- if ( hdiv != null ) {
306
- // painter.CreateStatus(28);
304
+ var hdiv = ( typeof func == 'function' ) ? JSROOT . Painter . ConfigureHSeparator ( 30 ) : null ;
305
+ if ( hdiv != null )
307
306
func ( hdiv , this . itemFullName ( status_item ) ) ;
308
- }
309
307
}
310
308
311
309
JSROOT . CallBack ( callback ) ;
937
935
JSROOT . Painter . ConfigureHSeparator = function ( height , onlyleft ) {
938
936
939
937
if ( ( JSROOT . Painter . separ == null ) ||
940
- ( JSROOT . Painter . horizontal != null ) ) return null ;
938
+ ( JSROOT . Painter . separ . horizontal != null ) ) return null ;
941
939
942
940
JSROOT . Painter . separ [ 'horizontal' ] = 'horizontal-separator-div' ;
943
941
JSROOT . Painter . separ [ 'bottom' ] = 'bottom-div' ;
You can’t perform that action at this time.
0 commit comments