Changeset 12004


Ignore:
Timestamp:
07/25/10 22:39:01 (19 months ago)
Author:
adamk
Message:

Moved the installation survey into the ::Nth subsystem.
Nth logic now triggers one second after startup.

Location:
trunk/Padre
Files:
3 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/Changes

    r12001 r12004  
    7373    - The New Installation Survey now only appears on the third time that 
    7474      Padre starts, so it doesn't confuse people with locale issues (ADAMK) 
     75    - Split Padre::Wx::Dialog::WhereFrom into main and FBP classes to try 
     76      out the designer-based approach experimentally (ADAMK) 
    7577 
    76780.66 2010.07.01 
  • trunk/Padre/lib/Padre/Wx/Nth.pm

    r12001 r12004  
    2929 
    3030    if ( $nth > 2 and not $config->feedback_done ) { 
    31         require Padre::Wx::Dialog::WhereFrom; 
    32         Padre::Wx::Dialog::WhereFrom->new($main); 
     31        $DB::single = 1; 
     32        require Padre::Wx::Dialog::WhereFrom2; 
     33        my $dialog = Padre::Wx::Dialog::WhereFrom2->new($main); 
     34        $dialog->run; 
     35        $dialog->Destroy; 
    3336        return 1; 
    3437    } 
Note: See TracChangeset for help on using the changeset viewer.