Skip to content

Commit 6084a4c

Browse files
authored
Merge pull request #2091 from willend/rewind-mcdisplay-classic
Missing patch required for use from Jupyter...
2 parents d968242 + a7ad645 commit 6084a4c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tools/Python/mcdisplay/webgl-classic/mcdisplay.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ def main(instr=None, dirname=None, debug=None, n=None, **kwds):
185185
parser.add_argument('--first', help='zoom range first component')
186186
parser.add_argument('--last', help='zoom range last component')
187187
parser.add_argument('-n', '--ncount', dest='n', type=float, default=300, help='Number of particles to simulate')
188-
188+
parser.add_argument('-t', '--trace', dest='trace', type=int, default=2, help='Select visualization mode')
189+
189190
args, unknown = parser.parse_known_args()
190191
# Convert the defined arguments in the args Namespace structure to a dict
191192
args = {k: args.__getattribute__(k) for k in dir(args) if k[0] != '_'}

0 commit comments

Comments
 (0)