diff options
Diffstat (limited to 'Mac/OSX/PythonLauncher/MyDocument.m')
-rwxr-xr-x | Mac/OSX/PythonLauncher/MyDocument.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/OSX/PythonLauncher/MyDocument.m b/Mac/OSX/PythonLauncher/MyDocument.m index 09a0024d5e..5acc2dcc90 100755 --- a/Mac/OSX/PythonLauncher/MyDocument.m +++ b/Mac/OSX/PythonLauncher/MyDocument.m @@ -60,6 +60,7 @@ [nosite setState: [settings nosite]]; [tabs setState: [settings tabs]]; [others setStringValue: [settings others]]; + [scriptargs setStringValue: [settings scriptargs]]; [with_terminal setState: [settings with_terminal]]; [commandline setStringValue: [settings commandLineForScript: script]]; @@ -161,6 +162,7 @@ - (BOOL) nosite { return [nosite state];}; - (BOOL) tabs { return [tabs state];}; - (NSString *) others { return [others stringValue];}; +- (NSString *) scriptargs { return [scriptargs stringValue];}; - (BOOL) with_terminal { return [with_terminal state];}; // Delegates |