Skip to content

Commit 85e40d7

Browse files
Merge pull request #190 from vpython/fix_attach_light_bug
fix_attach_light_bug
2 parents 14bacb6 + c7c0d58 commit 85e40d7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

labextension/vpython/src/glowcommlab.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ let attrsb = {'a':'userzoom', 'b':'userspin', 'c':'range', 'd':'autoscale', 'e':
478478
'u':'logx', 'v':'logy', 'w':'dot', 'x':'dot_radius',
479479
'y':'markers', 'z':'legend', 'A':'label','B':'delta', 'C':'marker_color',
480480
'D':'size_units', 'E':'userpan', 'F':'scroll', 'G':'choices', 'H':'depth',
481-
'I':'round', 'J':'name', 'K':'offset'}
481+
'I':'round', 'J':'name', 'K':'offset', 'L':'attach_idx'}
482482

483483
// methods are X in {'m': '23X....'} available: u
484484
let methods = {'a':'select', 'b':'pos', 'c':'start', 'd':'stop', 'f':'clear', // unused eghijklmnopvxyzCDFAB

vpython/vpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
'logx':'u', 'logy':'v', 'dot':'w', 'dot_radius':'x',
9999
'markers':'y', 'legend':'z', 'label':'A', 'delta':'B', 'marker_color':'C',
100100
'size_units':'D', 'userpan':'E', 'scroll':'F', 'choices':'G', 'depth':'H',
101-
'round':'I', 'name':'J', 'offset':'K', 'L':'attach_idx'}
101+
'round':'I', 'name':'J', 'offset':'K', 'attach_idx':'L'}
102102

103103
# methods are X in {'m': '23X....'}
104104
# pos is normally updated as an attribute, but for interval-based trails, it is updated (multiply) as a method

vpython/vpython_libraries/glow.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vpython/vpython_libraries/glowcomm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
'u':'logx', 'v':'logy', 'w':'dot', 'x':'dot_radius',
397397
'y':'markers', 'z':'legend', 'A':'label','B':'delta', 'C':'marker_color',
398398
'D':'size_units', 'E':'userpan', 'F':'scroll', 'G':'choices', 'H':'depth',
399-
'I':'round', 'J':'name', 'K':'offset'}
399+
'I':'round', 'J':'name', 'K':'offset', 'L':'attach_idx'}
400400

401401
// methods are X in {'m': '23X....'} available: u
402402
let methods = {'a':'select', 'b':'pos', 'c':'start', 'd':'stop', 'f':'clear', // unused eghijklmnopvxyzCDFAB

vpython/vpython_libraries/glowcomm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ let attrsb = {'a':'userzoom', 'b':'userspin', 'c':'range', 'd':'autoscale', 'e':
446446
'u':'logx', 'v':'logy', 'w':'dot', 'x':'dot_radius',
447447
'y':'markers', 'z':'legend', 'A':'label','B':'delta', 'C':'marker_color',
448448
'D':'size_units', 'E':'userpan', 'F':'scroll', 'G':'choices', 'H':'depth',
449-
'I':'round', 'J':'name', 'K':'offset'}
449+
'I':'round', 'J':'name', 'K':'offset', 'L':'attach_idx'}
450450

451451
// methods are X in {'m': '23X....'} available: u
452452
let methods = {'a':'select', 'b':'pos', 'c':'start', 'd':'stop', 'f':'clear', // unused eghijklmnopvxyzCDFAB

0 commit comments

Comments
 (0)