Re: WxPython problem with visibility of status bar

2019-12-29 Thread AudioGames . net Forum — Developers room : zywek via Audiogames-reflector


  


Re: WxPython problem with visibility of status bar

I'm using archlinux, python 3.8 and wxpython 4.07

URL: https://forum.audiogames.net/post/489206/#p489206




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: WxPython problem with visibility of status bar

2019-12-29 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: WxPython problem with visibility of status bar

Hmm, well if it works in libre office than that could suggest the issue is with wxPython. What distro of Linux are you using? And what version of Python and wxPython? wxPython has been known to have a number of little quirks, especially when moving between platforms or distros. I don't have a linux rig to test anything out, and i'm not sure if there's many dev's here who've used wxPython on linux with Orca much, the better place to deal with this may be on the [wxPython Discuss board].

URL: https://forum.audiogames.net/post/489203/#p489203




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: WxPython problem with visibility of status bar

2019-12-29 Thread AudioGames . net Forum — Developers room : zywek via Audiogames-reflector


  


Re: WxPython problem with visibility of status bar

But when i'm trying to read a status bar in libre office by pressing orca+slash two times with keyboard set to laptop, orca reads it correctly

URL: https://forum.audiogames.net/post/489194/#p489194




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: WxPython problem with visibility of status bar

2019-12-28 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: WxPython problem with visibility of status bar

The fact your using Orca suggests your running this on a linux distro? Not sure if you may encounter issues with that... Code checks out on windows, other than that slight indent issue in the post. It could also have something to do with Orca, I know on windows NVDA doesn't read the status bar by default on its own, there's a special key combination you have to use, NVDA Key+End I believe. Perhaps there are different settings or key shortcuts for that? I've been trying to dig into orca's documentation, but not getting much of a straight answer.

URL: https://forum.audiogames.net/post/489151/#p489151




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


WxPython problem with visibility of status bar

2019-12-28 Thread AudioGames . net Forum — Developers room : zywek via Audiogames-reflector


  


WxPython problem with visibility of status bar

Hello.I wrote simple application to test visibility of status bar using Orca.Here's the code:import wxclass frm(wx.Frame):    def __init__(self):        frame = wx.Frame.__init__(self, None, title="StatusBar test")        panel = wx.Panel(self)self.status_bar = self.CreateStatusBar(2)        self.status_bar.Show()        self.status_bar.SetStatusText("this is a first test")        self.status_bar.SetStatusText("This is a second test", 1)        self.Show()app = wx.App(False)frame = frm()app.MainLoop()Orca cannot read the text displayed on a status bar.

URL: https://forum.audiogames.net/post/488934/#p488934




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector