Ignore:
Timestamp:
02/08/10 12:38:35 (2 years ago)
Author:
azawawi
Message:

Spawn process without waiting (only on win32)

File:
1 edited

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; 
Note: See TracChangeset for help on using the changeset viewer.