Bill Gray

Results 189 comments of Bill Gray

`mouseinterval()` is not ignored on any platform; it's always used to determine if a press and release are close enough together to be consolidated into a click. But it's not...

OK, couldn't resist a little tinkering. WinGUI now has the logic in it for "proper" mouse click handling abstracted. At some point, it can be pulled out and used for...

Not very good, I'm afraid. Only VT and WinGUI have triple clicks... and I just gave it a try with `testcurs`, and on those platforms, a triple click gets you...

Yeah, I think they're stuck with 'traditional' PDCurses, and not much is going on with the project... let's close this and say that any use of PDCursesMod in Python will...

Got the same problem here when running the "input test" section of `testcurs.exe` on Wine. Haven't puzzled it out yet. Will investigate tomorrow (need sleep now.) When you say it...

Quick/dirty fix to Shift-Numpad issues on WinGUI requires adding these lines : ```patch --- a/wingui/pdcscrn.c +++ b/wingui/pdcscrn.c @@ -1413,6 +1413,11 @@ static void HandleSyskeyDown( const WPARAM wParam, const LPARAM lParam,...

Commit eacd04d1aa460a1912c22300670ee51a3 should fix this. We do still have the inconsistencies between platforms as to what you get with Shift-numpad key hits. Just fired up the Win10 box and I...

Finally figured out why we get duplicate Shift-Numpad hits on SDL2 and fixed it (commit 9b86c29aa1f86fe486a6119f9). @wmcbrine, this may be of interest to you, as the problem and its fix...

I've never had a great deal of success in getting VT to work on Windows. (At the time I started working on the VT platform, Microsoft didn't support anything VT-related;...

Just did a little digging in to this. The two issues that jumped out at me were the inability to find or set the terminal size, and the lack of...