Changeset 2143


Ignore:
Timestamp:
12/21/08 17:30:48 (3 years ago)
Author:
adamk
Message:

Disable plugin failure message (for now)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/PluginManager.pm

    r2140 r2143  
    185185    $self->_refresh_plugin_menu; 
    186186    if ( my @failed = $self->failed ) { 
    187         $self->parent->wx->main_window->error( 
    188             Wx::gettext("Failed to load the following plugin(s):\n") 
    189             . join "\n", @failed 
    190         ) unless $ENV{HARNESS_ACTIVE}; 
     187        # Until such time as we can show an error message 
     188        # in a smarter way, this gets annoying. 
     189        # Every time you start the editor, we tell you what 
     190        # we DIDN'T do... 
     191        # Turn this back on once we can track these over time 
     192        # and only report on plugins that USED to work but now 
     193        # have started to fail. 
     194        #$self->parent->wx->main_window->error( 
     195        #   Wx::gettext("Failed to load the following plugin(s):\n") 
     196        #   . join "\n", @failed 
     197        #) unless $ENV{HARNESS_ACTIVE}; 
    191198        return; 
    192199    } 
Note: See TracChangeset for help on using the changeset viewer.