Changeset 10623

Show
Ignore:
Timestamp:
02/08/10 12:38:35 (7 months ago)
Author:
azawawi
Message:

Spawn process without waiting (only on win32)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Directory/OpenInFileBrowserAction.pm

    r10612 r10623  
    3131                # because it crashes when launching a non-console app 
    3232                if (Padre::Constant::WIN32) { 
    33                         system( $cmd, @cmd_args ); # we know that Explorer.exe will quit quickly 
     33                        # Spawn process without waiting (only on win32, see perlport) 
     34                        system( 1, $cmd, @cmd_args ); 
    3435                } else { 
    3536                        require IPC::Open2;