Windows is dumb, special case out gimp invocation just like we did for

2006-10-21  Manish Singh  <yosh@gimp.org>

        * plug-ins/pygimp/plug-ins/pyconsole.py: Windows is dumb, special
        case out gimp invocation just like we did for gtkcons.py
This commit is contained in:
Manish Singh 2006-10-21 20:21:32 +00:00 committed by Manish Singh
parent e634d4d718
commit aa093e8879
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-10-21 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/plug-ins/pyconsole.py: Windows is dumb, special
case out gimp invocation just like we did for gtkcons.py
2006-10-21 Michael Natterer <mitch@gimp.org>
Added "Edit -> Fade" which allows to modify the paint mode and

View File

@ -654,4 +654,5 @@ def _make_window():
return console
if __name__ == '__main__':
_make_window()
if len(sys.argv) < 2 or sys.argv[1] != '-gimp':
_make_window()