Kaydet (Commit) 43fd1f75 authored tarafından Jack Jansen's avatar Jack Jansen

Give a warning if system-wide sys.argv processing is off (because then we

may have missed an applet being dropped on us). This may fix the obscure bug
Tony Ingraldi was experiencing.
üst c6f8fd92
......@@ -151,7 +151,10 @@ def interact(options, title):
def edit_preferences():
handler = pythonprefs.PythonOptions()
result = interact(handler.load(), 'System-wide preferences')
options = handler.load()
if options['noargs']:
EasyDialogs.Message('Warning: system-wide sys.argv processing is off.\nIf you dropped an applet I have not seen it.')
result = interact(options, 'System-wide preferences')
if result:
handler.save(result)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment