Page 1 of 1

Unable to view fields of a structure with a keyboard in the variable viewer

Posted: Sat May 24, 2025 7:57 pm
by Quin
I have this code:

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
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?

Re: Unable to view fields of a structure with a keyboard in the variable viewer

Posted: Sun May 25, 2025 1:49 am
by idle
think you need to double click the variable

Re: Unable to view fields of a structure with a keyboard in the variable viewer

Posted: Sun May 25, 2025 2:34 am
by Quin
idle wrote: Sun May 25, 2025 1:49 am think you need to double click the variable
See my edit. ;)