Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0701bd6

Browse files
committed
Fix for #860242: use correct names in the "save preferences" dialog.
1 parent 30184f3 commit 0701bd6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Mac/Tools/IDE/PyEdit.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -775,9 +775,9 @@ def __init__(self, creator, eoln):
775775
self.w = w = W.ModalDialog((260, 160), 'Save options')
776776
radiobuttons = []
777777
w.label = W.TextBox((8, 8, 80, 18), "File creator:")
778-
w.ide_radio = W.RadioButton((8, 22, 160, 18), "This application", radiobuttons, self.ide_hit)
779-
w.interp_radio = W.RadioButton((8, 42, 160, 18), "MacPython Interpreter", radiobuttons, self.interp_hit)
780-
w.interpx_radio = W.RadioButton((8, 62, 160, 18), "OSX PythonW Interpreter", radiobuttons, self.interpx_hit)
778+
w.ide_radio = W.RadioButton((8, 22, 160, 18), "PythonIDE", radiobuttons, self.ide_hit)
779+
w.interp_radio = W.RadioButton((8, 42, 160, 18), "MacPython-OS9 Interpreter", radiobuttons, self.interp_hit)
780+
w.interpx_radio = W.RadioButton((8, 62, 160, 18), "PythonLauncher", radiobuttons, self.interpx_hit)
781781
w.other_radio = W.RadioButton((8, 82, 50, 18), "Other:", radiobuttons)
782782
w.other_creator = W.EditText((62, 82, 40, 20), creator, self.otherselect)
783783
w.none_radio = W.RadioButton((8, 102, 160, 18), "None", radiobuttons, self.none_hit)

0 commit comments

Comments
 (0)