Changeset 5507


Ignore:
Timestamp:
Mar 31, 2010, 9:34:17 PM (14 years ago)
Author:
ronosman
Message:

Bug fixed : use caption as prefix does not work on Ubuntu. EVT_COMBOBOX_TEXT is triggered before EVT_COMBOBOX.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/pLoader/trunk/src/Uploader/GUI/DlgCommon.pm

    r5390 r5507  
    100100    my ( $self, $ctrl, $event ) = @_;
    101101
    102     if( exists $ctrl->{_value}){
    103         $event->Skip(1);
    104     }
    105     else{
    106         my $id = $ctrl->GetId;
     102    # text changed by user, not selection
     103    if( -1 eq $ctrl->GetSelection){
     104       my $id = $ctrl->GetId;
    107105        # change the property value
    108106        $self->properties->{$id}->{value}->(
Note: See TracChangeset for help on using the changeset viewer.