News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

numpad del doesn't work in Linux...

Started by rickg22, March 23, 2008, 03:35:33 AM

Previous topic - Next topic

rickg22

in my current install, i can't use the numpad Del key to delete a character. Whenever I press it, a "Ɓ" character shows up. Any idea of why it would happen? Other wxGTK apps don't do that, only CB. Please help :(

rickg22

I found a fix...

in ScintillaWX.cpp:


    case WXK_DELETE:            key = SCK_DELETE;   break;


Prepend the following line:

    case WXK_NUMPAD_DELETE:


And it works now :)

JGM

without noticing you are becoming an active developer again!  :D

killerbot

applied this, and did similar thing for the numeric keypad 'insert' :-)


killerbot

I think we should really sort out, what version we should be using of scintilla and wxScintilla. Kind of stupid we are fixing bugs that are fixed ages ago :-(

@Yiannis : what do you think ? We go for a massive update of these components ?

rickg22

I think that independently of what wxWhatever container we use for Scintilla, we should always use the latest version of scintilla and patch it according to our needs (it'd be better if we used additional files for our new functions so future versions don't have to be repatched).