FIXED: V16.16b2 - Ctrl-right/left is broken again...

Report issues, odd behaviors or submit a detailed bug report.
Post Reply
User avatar
DerellLicht1
Posts: 144
Joined: 23 Jul 2021 17:38
Location: Fremont, CA, USA

FIXED: V16.16b2 - Ctrl-right/left is broken again...

Post by DerellLicht1 »

Well, this was working beautifully for me, up until this new update, now it's quirky again...

Consider the following C++ line:

Code: Select all

         return (*winproc_table[idx].winproc_func)(hwnd, message, wParam, lParam, NULL) ;
stops:          |                                        |        |       |       |
expected:         |                  |             |     |        |       |       |
So basically, it is *not* actually stopping on words any more...
could you please review this again??
Last edited by DerellLicht1 on 08 Apr 2024 22:09, edited 1 time in total.
User avatar
DerellLicht1
Posts: 144
Joined: 23 Jul 2021 17:38
Location: Fremont, CA, USA

Re: V16.16b2 - Ctrl-right/left is quirky again...

Post by DerellLicht1 »

hmmm... so I reverted to V16.15, and find that Ctrl-left works as expected, but Ctrl-right fails like the current beta does...

Waaaahhhhh! This was working before, why is it broken now???
User avatar
Rickard Johansson
Site Admin
Posts: 6630
Joined: 19 Jul 2006 14:29

Re: V16.16b2 - Ctrl-right/left is broken again...

Post by Rickard Johansson »

Seems you're using the option to "Ignore symbols" with Ctrl+Left/Right... I'll look into it.
User avatar
Rickard Johansson
Site Admin
Posts: 6630
Joined: 19 Jul 2006 14:29

Re: V16.16b2 - Ctrl-right/left is broken again...

Post by Rickard Johansson »

Fixed in final release. Thanks!

This is were it stops in the final version.

Code: Select all

         return (*winproc_table[idx].winproc_func)(hwnd, message, wParam, lParam, NULL) ;
stops:   |        |             |    |             |     |       |        |       |
expected:         |                  |             |     |       |        |       |
User avatar
DerellLicht1
Posts: 144
Joined: 23 Jul 2021 17:38
Location: Fremont, CA, USA

Re: FIXED: V16.16b2 - Ctrl-right/left is broken again...

Post by DerellLicht1 »

Ahhhh!!! Thank you once again, Master !!!!!
Post Reply