Skip to content

Commit c230b79

Browse files
committed
BF: Use the default startup options.
This should prevent splash-screen from coming up and also figures from popping up while running this.
1 parent 2a9373d commit c230b79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pymatbridge/matlab_magic.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ def __init__(self, shell,
130130
super(MatlabMagics, self).__init__(shell)
131131
self.cache_display_data = cache_display_data
132132

133-
self.Matlab = pymat.Matlab(matlab, maxtime=maxtime,
134-
startup_options='-noFigureWindows')
133+
self.Matlab = pymat.Matlab(matlab, maxtime=maxtime)
135134
self.Matlab.start()
136135
self.pyconverter = pyconverter
137136
self.matlab_converter = matlab_converter

0 commit comments

Comments
 (0)