Skip to content

Commit f2b51af

Browse files
committed
Merge pull request #156 from blink1073/master
Do not show the splash screen
2 parents ee46fbb + 78ab1f6 commit f2b51af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymatbridge/pymatbridge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,9 +440,9 @@ def __init__(self, executable='matlab', socket_addr=None,
440440
platform = sys.platform
441441
if startup_options is None:
442442
if platform == 'win32':
443-
startup_options = ' -automation'
443+
startup_options = ' -automation -nosplash'
444444
else:
445-
startup_options = ' -nodesktop'
445+
startup_options = ' -nodesktop -nosplash'
446446
if log:
447447
startup_options += ' -logfile ./pymatbridge/logs/matlablog_%s.txt' % id
448448
super(Matlab, self).__init__(executable, socket_addr, id, log, maxtime,

0 commit comments

Comments
 (0)