RE: [PyCrust] enabling shift+insert, control+insert, shift+delete keys in pycrust
Brought to you by:
pobrien
From: Patrick K. O'B. <po...@or...> - 2002-02-05 23:21:33
|
This has been corrected in the CVS version. Thanks a bunch for the feedback. Sorry it took me so long to fix it. --- Patrick K. O'Brien Orbtech > -----Original Message----- > From: pyc...@li... > [mailto:pyc...@li...]On Behalf Of Syver > Enstad > Sent: Sunday, January 13, 2002 7:27 AM > To: pyc...@li... > Subject: [PyCrust] enabling shift+insert, control+insert, shift+delete > keys in pycrust > > > PyCrust disables as is disables some of the standard bindings for > copying, deleting and inserting text. > > The following code fixes the problem: > >From shell.Shell method OnKeyDown > # Don't toggle between insert mode and overwrite mode. > elif key == WXK_INSERT and not (event.ShiftDown() or > event.ControlDown()): > pass > > The only added code is : > and not (event.ShiftDown() or event.ControlDown()) > -- > > Vennlig hilsen > > Syver Enstad > > > > _______________________________________________ > PyCrust-users mailing list > PyC...@li... > https://lists.sourceforge.net/lists/listinfo/pycrust-users |