Unable to view fields of a structure with a keyboard in the variable viewer
Posted: Sat May 24, 2025 7:57 pm
I have this code:
Running it, I can see my variable in the variable viewer, but I'm unable to view any of the structure fields, at least with my screen reader. Is this a bug, or intended behavior?
Edit: okay...the variable viewer just is super unfriendly to keyboard users. I have to left double click to do this...
As someone without a mouse attached to my PC, this is incredibly difficult. Is it possible to have pressing enter do this too?
Code: Select all
EnableExplicit
Structure Test
Test$
Other.i
EndStructure
Global t.test
t\Test$ = "meow"
t\Other = 42
OpenWindow(0, 0, 0, 400, 300, "Test")
ShowVariableViewer()
Repeat : Until WaitWindowEvent(1) = #PB_Event_CloseWindow
Edit: okay...the variable viewer just is super unfriendly to keyboard users. I have to left double click to do this...
As someone without a mouse attached to my PC, this is incredibly difficult. Is it possible to have pressing enter do this too?