X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=wx%2Fgui%2Fplugin.py;h=ad52e459e2b2b10101ee1aeaa19f275d429ce9d3;hp=36f21e32e0a334606d787cfd694293a6dfa5c8fc;hb=0b7e2e66ed62a28bf4e977c5e9a5dc601b2fcae2;hpb=9d5d1863087e91a57e1e4308d964a8e73220fec1 diff --git a/wx/gui/plugin.py b/wx/gui/plugin.py index 36f21e3..ad52e45 100644 --- a/wx/gui/plugin.py +++ b/wx/gui/plugin.py @@ -117,7 +117,9 @@ class Plugin: # To avoid an ugly "DOS Window" to show up flags = win32process.CREATE_NO_WINDOW except ImportError: - flags = 0 + # See http://msdn.microsoft.com/en-us/library/ms684863(VS.85).aspx + # for this flag (CREATE_NO_WINDOW) value + flags = 0x08000000 else: flags = 0 output = Popen(cmd, stdin=PIPE, stdout=PIPE,