Changeset 9624


Ignore:
Timestamp:
12/12/09 03:57:36 (2 years ago)
Author:
Sewi
Message:

Fixed ticket #750... hopefully

Location:
trunk/Padre/lib/Padre/Wx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Editor.pm

    r9606 r9624  
    208208            $self->CmdKeyExecute(Wx::wxSTC_CMD_LINEDELETE); 
    209209        } 
     210        return; 
    210211    } 
    211212 
     
    214215        $self->on_smart_highlight_begin($event); 
    215216    } 
     217 
     218    $self->main->key_up($event); 
     219 
    216220} 
    217221 
  • trunk/Padre/lib/Padre/Wx/Main.pm

    r9617 r9624  
    51785178                                   # Ctrl-TAB  #TO DO it is already in the menu 
    51795179        if ( $code == Wx::WXK_TAB ) { 
     5180            # TODO: Catch up the right action for this shortcut 
    51805181            $self->on_next_pane; 
    51815182        } 
    51825183    } elsif ( $mod == Wx::wxMOD_CMD() + Wx::wxMOD_SHIFT() ) { # Ctrl-Shift 
    5183                                                               # Ctrl-Shift-TAB #TO DO it is already in the menu 
     5184                                                              # Ctrl-Shift-TAB 
     5185                                                              # TODO it is already in the menu 
     5186        # TODO: Catch up the right action for this shortcut 
    51845187        $self->on_prev_pane if $code == Wx::WXK_TAB; 
    51855188    } elsif ( $mod == Wx::wxMOD_ALT() ) { 
Note: See TracChangeset for help on using the changeset viewer.