[orca-list] Orca can't see a Statusbar in wx application
- From: Arkadiusz Kozioł <zywek-mailing nvps pl>
- To: orca-list gnome org
- Subject: [orca-list] Orca can't see a Statusbar in wx application
- Date: Sat, 28 Dec 2019 16:33:30 +0100
Hello.
I wrote simple application to test visibility of status bar.
Here's the code:
import wx
class 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.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]