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

Working on new editor enhancements?
Quin
Addict
Addict
Posts: 1133
Joined: Thu Mar 31, 2022 7:03 pm
Location: Colorado, United States
Contact:

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

Post 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?
User avatar
idle
Always Here
Always Here
Posts: 5891
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

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

Post by idle »

think you need to double click the variable
Quin
Addict
Addict
Posts: 1133
Joined: Thu Mar 31, 2022 7:03 pm
Location: Colorado, United States
Contact:

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

Post by Quin »

idle wrote: Sun May 25, 2025 1:49 am think you need to double click the variable
See my edit. ;)
Post Reply