run tag by name is broken ( CombinedPlot onKey action)
Open
Bug
- Dominant language
- Jupyter Notebook
- Stars
- 2.9k
- Forks
- 383
- PR merge metrics
- No merged PRs in 30d
Description
code for reproduce:
```cplot7 = new CombinedPlot()
def plot7_1 = new Plot(useToolTip: false);
plot7_1 << new Bars(x: (1..5), y: [5, 2, 4, 3, 7]).onKey(KeyboardCodes.SHIFT, { info -> info.graphics.y[info.index]++; })
cplot7.add(plot7_1)
def plot7_2 = new Plot(useToolTip: false);
plot7_2 << new Bars(x: (1..5), y: [12, 6, 8, 4, 8], color: new Color(200, 55, 55)).onKey("T", "tag72")
cplot7.add(plot7_2)```
expected result: After pressing `T` the cell with `tag72` should be run
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.