Hi, I wondered why the user shortcuts
Keypad Divide and Multiply is working in Windows 
but not on Linux (gtk).

So looking at the sourcecode, I found a difference.

Could it be that in 
gtk/scitegtk.cxx

long SciTEKeys::ParseKeyCode
...
after
                                } else if (sKey == "KeypadPlus") {
                                        keyval = GDK_KP_Add;
                                } else if (sKey == "KeypadMinus") {
                                        keyval = GDK_KP_Subtract;

some other keypad keys are missing?
like
                                } else if (sKey == "KeypadMultiply") {
                                        keyval = GDK_KP_Mulitply;
                                } else if (sKey == "KeypadDivide") {
                                        keyval = GDK_KP_Divide;


Is this intended?
Or was it forgotten?

-- 

Franz Steinhaeusler

_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to