Skip to content

Commit 031b146

Browse files
committed
Fix - do not inspect TKey with sub-directory inside
Half-fix for remote file access via THttpServer
1 parent 700e43b commit 031b146

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

changes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## Change in 6.3.x
44
1. Fix TEfficiency drawing
5-
2. Provide TPadPainter.divide method
5+
2. Provide TPadPainter.divide method
6+
3. Fix browsing remote file via THttpServer
67

78

89
## Changes in 6.3.2

scripts/JSRoot.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104

105105
/** @summary JSROOT version date
106106
* @desc Release date in format day/month/year like "19/11/2021"*/
107-
JSROOT.version_date = "17/12/2021";
107+
JSROOT.version_date = "20/12/2021";
108108

109109
/** @summary JSROOT version id and date
110110
* @desc Produced by concatenation of {@link JSROOT.version_id} and {@link JSROOT.version_date}

scripts/JSRoot.jq2d.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,8 @@ JSROOT.define(['d3', 'jquery', 'painter', 'hierarchy', 'jquery-ui', 'jqueryui-mo
820820

821821
if (!place || (place=="")) place = "item";
822822

823-
let sett = jsrp.getDrawSettings(hitem._kind), handle = sett.handle;
823+
let selector = (hitem._kind == "ROOT.TKey" && hitem._more) ? "noinspect" : "",
824+
sett = jsrp.getDrawSettings(hitem._kind, selector), handle = sett.handle;
824825

825826
if (place == "icon") {
826827
let func = null;

0 commit comments

Comments
 (0)