B22 - Editor Eating ALT Key?

So I just upgraded to B22. It now seems that the editor eats any combination of keys with ALT down. The following will never print ALT. Rather than hand/eye icon at the top left of the editor (pan/translate/rotate/scale toolbar) switches. Is anyone else experiencing this?

void Update()
        {
        //for keyboard, arrow keys plus ALT.
        if (Input.GetKeyUp(KeyCode.LeftArrow) || Input.GetKeyUp(KeyCode.RightArrow))
            {

            Debug.Log("Arrow");

            if (Input.GetKey(KeyCode.LeftAlt) || Input.GetKey(KeyCode.RightAlt))
                {
                //Does not work. Alt in combination with anything never happens.
                Debug.Log("Alt");
                }
            }
        }

Sounds bad. Bug report with minimal reproducible project would be appreciated.

This issue is fixed and undergoing QA before going into next Beta.
Cheers
Shanti
Editor Montreal

Great, thanks for the quick response. I was just about to upload a repro, but I guess no reason to now.

Nope. Thanks for bringing it up!
Shanti