GithubHelp home page GithubHelp logo

aaclause / brailleextender Goto Github PK

View Code? Open in Web Editor NEW
15.0 11.0 17.0 4.32 MB

NVDA add-on that improves braille support

Home Page: https://andreabc.net/projects/NVDA_addons/BrailleExtender/

License: GNU General Public License v2.0

Python 99.72% Smarty 0.13% CSS 0.13% Batchfile 0.03%
braille nvda-addon nvda

brailleextender's People

Contributors

aaclause avatar adriani90 avatar clementb49 avatar cobc avatar danieldamacena-ma avatar dawidpieper avatar dino804 avatar dreinn avatar hozosch avatar ikrami1 avatar josephsl avatar maniyax avatar piyanistumutkorkmaz avatar skrdaniel avatar sukiletxe avatar surfer0627 avatar vovamobile avatar zstanecic avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

brailleextender's Issues

introduction of "atribute mode"

Hello,

as @Andre9642 suggested in the comment on issue #42, here I would try to describe, what I thought with this, due to I also have not used JAWS for years.
JAWS has 2 braille modes, which are character and atribute mode. when character mode is present, text is shown on braille display. if text has one or more atributes set, then it is marked with dots seven and eight. Which atributes (bold, italic, underline etc) would be presented on display, is controled in braille settings.
atribute mode is mode where display shows first letter of atribute on a coresponding cell instead of a character. if text/character has more atributes, then display circles between them. e.g. if text is bolded and italicised, then display shows b (bold) and at next second shows i (italic) on cells, where this text was shown and then again (switches between them).

hope, that I was clear enough.

oh, forgot to add, that in JAWS you can switch between modes on the fly with routing/doublerouting key on braille display, which has reserved space for status cells. for others I do not remember a command to switch between braille modes.

thanks.

regards,
Jožef

when trying to save settings in generall settings and possibly other dialogs, an error occurs and dialog is not closed

str:

  1. open the general settings of the add-on, for example.
  2. change some settings
  3. press ok,
  4. see the following log:
    ERROR - unhandled exception (12:09:33.572):
    Traceback (most recent call last):
      File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 167, in onOk
      File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 1191, in reverseScrollBtns
    KeyError: u'Braille'
    this happens on the polish and other non-unicode locales.

when NVDA is exited or restarted, braille extender uninitializes properly

Steps to reproduce: simply exit or restart NVDA.
In the log, we read the following:
ERROR - globalPluginHandler.terminate (11:58:56.660) - MainThread (3452):
Error terminating global plugin <globalPlugins.brailleExtender.GlobalPlugin object at 0x06CA1470>
Traceback (most recent call last):
File "globalPluginHandler.pyc", line 41, in terminate
File "C:\Users\zvonimir\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 1348, in terminate
dictionaries.removeTmpDict()
File "C:\Users\zvonimir\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\dictionaries.py", line 129, in removeTmpDict
path = getPathDict("tmp")
TypeError: getPathDict() missing 1 required positional argument: 'usableIn'
version of the addon: 20.05.31:1c6df09
windows 10 2004, russian, 64 bit.

Meta: improve add-on messages in regards to grammar, possible spelling, shortening messages

Hi,

Stemming from #73 discussion on messages:

There has been requests by translators to make the add-on messages easier to understand and translate. Part of the reason for translation difficulties is grammar and message verbosity.

This issue is aimed to serve as a meta discussion issue for messages that will need to be improved, could see some improvements, or shortened. For example, when one tries to edit Braille Extender profiles, the message shown is:

You must have a braille display to editing a profile

It should say:

You must have a braille display connected to edit a profile

Or better yet, a more precise message might be:

A braille display must be in use to view and edit profiles.

Currently the following issues with messages are seen:

  • Use of "a" versus "an" for vowels
  • Grammar issues
  • Verbose messages for settings
  • No translator comments (see #74)

Please comment if you know (or think) there are messages in this add-on that can see an improvement.

Thanks.

Add custom Braille landmarks

I propose that, instead of using dot 78 to mark a formatting change, Braille delimiters be used to clearly identify different formats.

Justification

Adding dot 7 and 8 to inform about a specific formatting offers several drawbacks:

  • It drowns out these dots, and important information can sometimes be found on dots 7 and 8. In most computer Braille tables, dot 7 is used to indicate capital letters. While this information is not vital, not seeing it can be problematic and force the user to turn off Attributa just to examine a word.
  • It doesn't allow to differentiate between different formats.

As it is, the user relying only on Braille (as I do) would turn on only one of the options of Attributa to avoid clustering and hard-to-decode information. For instance, I like to see my spelling errors with dot 7 and 8, but if I turn anything else on, I won't know what's what.

Proposal

Instead of using dot 7 and 8 to indicate these formatting changes, I propose to use clear Braille landmarks that, maybe, the user can choose. There would be one Braille landmark before the affected portion, and another one at the end. For instance:

This is in <b>bold<B>.

I know this will add quite a layer of complexity, since it will shift Braille cells further and render NVDA's calculation for the routing cursor invalid, but I believe this is worth it.

I have detailed this proposal on a NVDA issue but have been asked to talk to you about the problem first.

Should routing by cursor key emulation be configurable

Some applications like Emacs under cygwin or some Linux app through putty or mintty handle mouse.
With the latest stable version of braille extender (I.E. 2018-08-14), theses apps stop working properly when I use routing cursor.
If I disable the keyboard movement emulator in patch.py by the following:
if 0 and obj.hasFocus and braille.handler._cursorPos and (obj.role == controlTypes.ROLE_TERMINAL or (obj.role == controlTypes.ROLE_EDITABLETEXT and braille.handler.tether == braille.handler.TETHER_REVIEW)):
The mouse aware apps rework but I loose the keyboard emulator for routing cursor.
So I suggest a config flag to enable and disable this feature as appropriate.
Something like:
if config.conf["brailleExtender"]['EmulateRouting'] and obj.hasFocus and braille.handler._cursorPos and (obj.role == controlTypes.ROLE_TERMINAL or (obj.role == controlTypes.ROLE_EDITABLETEXT and braille.handler.tether == braille.handler.TETHER_REVIEW)):
Could work fine.

last braille extender update dev is not loading

WARNING - external:globalPlugins.brailleExtender.configBE.checkConfigPath (12:00:41.049):
C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\Profiles/handyTech/profile.ini not found or is inaccessible
ERROR - globalPluginHandler.listPlugins (12:00:41.049):
Error importing global plugin brailleExtender
Traceback (most recent call last):
File "globalPluginHandler.pyc", line 22, in listPlugins
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 46, in
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\configBE.py", line 313, in
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\configBE.py", line 100, in loadConf
KeyError: 'miscs'
INFO - core.main (12:00:41.078):
NVDA initialized

when in microsoft word, atribra is not working

microsoft word version,
16.0.4639.1000)
latest master version of NVDA
try to turn on braille extender and attribra to indicate bold or italic
result when doing bold or italic, it is not working

NVDA 2019.3/alpha: critical error when contracted output braille table is used

With a Python 3 version of NVDA, when a contracted output braille table is used, the braille crashes completely with the following error (current stable and dev versions of Braille Extender are affected):

Traceback (most recent call last):
  File "scriptHandler.pyc", line 205, in executeScript
  File "globalCommands.pyc", line 2122, in script_braille_dots
  File "brailleInput.pyc", line 263, in input
  File "brailleInput.pyc", line 232, in _reportUntranslated
  File "brailleInput.pyc", line 191, in _translateForReportContractedCell
  File "louis\__init__.pyc", line 254, in backTranslate
OSError: exception: access violation reading 0x00000000

Edit: with the stable version, it seems that the bug produces if a contracted table is used in input and output.

With EnhancedAria installed, when landing on an Article landmark, fatal error is encountered

Steps to reproduce

  1. Load current NVDA Alpha snapshot.
  2. Install current Braille Extender stable version, and current Enhanced ARIA extension.
  3. After restart, go into Settings/Enhanced ARIA, and activate the Articles checkbox.
  4. Go to a site that has an article element.

Observed error

Once the braille display shows the line of the current article landmark start, an error is generated. The debug output shows:

ERROR - external:globalPlugins.brailleExtender.TextInfoRegion.update (07:58:06.217):
Fatal error: u'article'

The line shown is also not the line of text that is supposed to be there, but some other text from the page.

Add-on messages: add translator comments

Hi,

Stemming from #73 discussion on messages:

One of the guidelines specified in NVDA community add-ons guide and review process is translator comments for messages to be translated. Perhaps due to the ad-don being developed prior to implementation of community-wide add-on review process, it might not had a chance to come with translator comments. Therefore go through add-on source code and add translator comments to messages to be translated by translators to make the life of translaotrs easier.

Thanks.

Broken cells feature

Goal: declare a list of cells that don't work. These cells should be always blank/ignored.

E.g.:

  • Text to display: hello world
  • Specified dead cells: 1, 4, 7
  • Normal braille representation:
    ⠓⠑⠇⠇⠕⠀⠺⠕⠗⠇⠙
  • Dead-cells braille representation:
    ⠀⠓⠑⠀⠇⠇⠀⠕⠀⠺⠕⠗⠇⠙

'Lock/unlock modifier keys' feature is broken

Reported by direct email to me:

Currently I  can press modifiers for a single key – so  I can press CTRl and then braille an S to save my document for example. However, if I want to hold modifiers until I release them – such as to hold shift to select text – is there a way this is supposed to work?
Neither the “lock/unlock modifiers” modifiers command in Braille extender, nor  the “virtually toggles “ … series of keys in braille\emulated system keys seem to hold the key down for more than a single press.

Add HUC Braille support

HUC Braille is another representation for undefined chars designed by @DrSooom. See the official documentation for more info.

Using this HUC-Braille converter, I'd like to implement this alternative in BrailleExtender.

In this scope, we need review the option — Show undefined characters as... —. I suggest:

  • A new label: Representation of undefined characters
  • A list box with the following choices:
    • Use braille table behavior (default)
    • Dots 1-8 (⣿)
    • Dots 1-6 (⠿)
    • Empty cell (⠀)
    • Question mark (depending output table)
    • Other dot patterns (to be filled in an edit box)
    • Hexadecimal, Liblouis style
    • Hexadecimal, HUC8
    • Hexadecimal, HUC6

Also I'd like to try to implement the possibility to — Use HUC8/HUC6 for braille input —. Maybe a special temporary mode for that (?).

Limitation: due to the end of Python 2 in January and other technical issues with Python 2 and Unicode, This feature will require Python 3.

Any though @DrSooom, @zstanecic?

Wrong and missing braille shortcut for Freedom Scientific

I have noticed tow errors in the Freedom Scientific profile:

  1. The shortcut BrailleSpace+dot1+dot4+dot5+dot8 for "gethelp" hides the shortcut for f4. I suggest to remove it because gethelp has the shortcut BrailleSpace+dot1+dot2+dot5
  2. The shortcut for autotest is wrong. It was braillespacebar+dot2+dot3+dot4+dot5+dot7+b8 instead of braillespacebar+dot2+dot3+dot4+dot5+dot7+dot8
  3. Unable to apply modifier keys to some arrow keys, insert delete. For example I can't do BrailleSpace+dot1+dot4 followed by BrailleSpace+dot6 to obtain control-right-arrow. No mean to enter control-delete. Something like BrailleSpace+dot1+dot4 followed by BrailleSpace+dot1+dot4+dot5 should be fine as I do for Control-F4 by example.

yet another braille extender error

  1. when trying to open the braille tables or general settings, these dialog fails to open with the following log:
    ERROR - unhandled exception (13:52:59.400):
    Traceback (most recent call last):
    File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 58, in onGeneralBtn
    File "gui\settingsDialogs.pyc", line 116, in init
    File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 154, in makeSettings
    File "gui\guiHelper.pyc", line 280, in addLabeledControl
    File "gui\guiHelper.pyc", line 158, in init
    File "gui\nvdaControls.pyc", line 37, in init
    TypeError: SpinCtrl(): arguments did not match any overloaded call:
    overload 1: too many arguments
    overload 2: argument 9 has unexpected type 'unicode'

settings dialog is not opening again

steps to reproduce:

  1. go to the nvda menu, and try to open settings dialog from the Braille extender submenu.
    expected: settings dialog should open.
    current state:
    settings dialog is not opening, and the following log message is in the output:
    ERROR - unhandled exception (10:09:54.980):
    Traceback (most recent call last):
    File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 1238, in onSettings
    File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 43, in init
    File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 262, in init
    File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 431, in
    TypeError: 'NoneType' object is not iterable

usint the latest master with my last merged translation,
18.01 preview build compiled manually with scons.

Status cells feature

Reported by direct email to me:

In Cobra user can define some 4 or 5 braille cells on the left or right sight of the braille display as a status cells. In those  status cells some constant information such as time, font size, attributes as characters,( e.g. B for bold, U for underline) coordinates in tables, procentage of download or copiing and so on can be constantly presented.  The user has a possibility to chose from the list of options which information exectly will be presented.
Also the user have the option to show and hide those right and left status areas by using shortcuts.
So, I don’t shure if it is possible at all to add such a feature to Braille extender, but it would be great to have it.

Introduce role-based braille mapper NVDA #4105

Copied description of nvaccess/nvda#4105:
Very often in NVDA and especially when using braille, role names and their states shown are either lengthy or at a "wrong" place.
By referring to "wrong place" it is meant that it is not intuitive and users have to search e.g. for the control state (e.g. for checkboxes).
This is the case even when braille display is tethered to review.
Furthermore the display representation is coupled to the settings set to speech.
Uncoupling them has the advantage of working faster especially when users work with both braille and speech.
A "braille mapper" can give full control to the user to customize braille output; thus every user can define his own scheme.
Following can be configured:
• Text representation of control type
• Position of control type or state label relative to the text
• Text might be underlined using dots 7 and 8
Braille mappings can either be global or application-specific and are stored in the nvda.ini configuration or application-specific one.
Braille mappings are defined on a per-controltype basis where the controltype is specified as ints which, at the moment is not intiutive. If a mapping is not defined for a controltype it falls back to the usual
representation scheme.
The mapping can take any text plus specific patterns which indicate variables such as values/names, hotkeys etc.
This is a list of patterns:
Pattern Meaning
%t Name or value
%s states
%h keyboardShortcuttext
%i current index
%I total amount of items
%c columnNumber
%o rowNumber
%d description
Example: To show the state of the checkbox in front of its name or value (without hotkey) following entry has to be in the configuration:
5 = %s %t
Furthermore the key dot78roles in the configuration file lists all roles which text should be marked by dots 7 and 8.
Both ruling mechanisms may work together.
A GUI hasn't been created yet. Eventually, only a few users do need this and hence can do it manually (as it was the case with gestures) or an addon can be delivered to provide the GUI. It would be great to have at least this functionality in the core since it can not be provided by addons.
The patch I attached contains modifications of the config/init.py (for the configuration template object) and the braille.py file which contains following modifications:
• Adjustment of getBrailleTextForProperties(**propertyValues):: Resorted calls. If rule does not exist for control type continue with "old" behaviour.
• def mapToRawText(text, role, states, **options): Contains the new mapping code. Currently is quite inefficient and some parts are missing. But I would like to complete it if this functionality would be accepted.
• NVDAObjectRegion.update(self): Added check whether role match config, and if this is the case set flag to true.
• Region.init(self): Added Attribute which is checked at NVDAObjectRegion class.
• Region.update(self): Added routine marking braille cells with dots 7 and 8.
I don't know how to get the link to brlmapper.patch out of the ticket. May @aliminator would like to help including the feature.

Code cleanup: use Flake8 linter

Hi,

Stemming from #31 discussion:

As a first step in preparing portions of Braille Extender to become NVDA Core pull requests, use Flake8 linter tool to clean up code. Although the Flake8 configuration to be used is not really the same as the one employed by NVDA Core, it has similar ideas, namely keywords, import statements, spacing and such.

Implementation:

  1. Clone Braille Extender source code.
  2. Run Flake8 against the source code. Ignore bits about line length, tqbs and such.
  3. Correct issues noted, run Flake8, and test the changes in real life with braille displays.

Note: if the accompanying pull request is integrated, you don't have to mention Flake8.

Thanks.

when opening help menu, unicode decode errors appear

  1. it appears on the polish windows,
  2. when opening help it throws an error
    ERROR - unhandled exception (16:44:41.163):
    Traceback (most recent call last):
    File "C:\Users\Dorota\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 969, in onDoc
    File "C:\Users\Dorota\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 847, in getDoc
    UnicodeEncodeError: 'ascii' codec can't encode character u'\u015b' in position 4: ordinal not in range(128)
    using latest version of the add-on from master.
    windows 10 64 bit, polish.

When automatically scrolling braille display, reset scroll timer when a panning key is pressed or other events happen

Hello. When reading with Braille Extender and using the auto-scroll feature, I sometimes am distracted from the text and wish to review a line or so above what is currently reached. So, I press the pan-left command or key, but quickly the auto-scroll feature moves back down to the line it was on before. I believe this is because of the timer still counting as before, even though I have moved in the braille text. This means that I have to scroll up a few times, in order to comfortably read back through what I missed.

So, I would like for the auto-scroll function to reset its timer whenever reading is interrupted, whether it be from the user pressing a button, like pan-left, or up-arrow, or a quick navigation key, or, if possible, the focus is taken somewhere else, like a notification appearing and the user having to press a routing button to dismiss it.

I hope this is clearly written. If you need more details, let me know.

No braille after upgrade to (20.05.30-0ba2250

After upgrading this morning to version (20.05.30-0ba2250, I no longer get braille on my 5th generation Focus 80 connected via USB. I tried restarting the display and the computer. Disabling Braille Extender restored braille, enabling it got rid of it again. I see "desktop wnd" when NVDA goes start, then nothing else. Using my Braille Extender NVDA hotkeys to switch between the Focus and my other configured display which happens to be "no braille" clears the display. That is, if I switch to no braille, the "desktop wnd" goes away, and switching back to the Focus leaves the display blank.

I was on the latest previous version before this morning's upgrade, and it was working fine.

Keith

Improve the display of role labels

Reported by direct email to me:

You implemented in Braille Extender the roll editor, but there is another disadvantage of braille representation in NVDA which has to be overcame. If I get an attachment for instance, NVDA says and writes in braille “has attachment.” But other screen readers such as Jaws or Cobra could separate speech and braille message. In Cobra for instance in braille was only shown “atm” hor attachment. It could be great if something like this will be possible also in NVDA via Braille Extender.

critical bug with the text areas in the latest dev builds with a lot of errors

Note:
this can be reproduced everywhere and there are no exact steps.
here is the log:
ERROR - eventHandler.executeEvent (11:21:00.451) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_KeyboardHandlerBasedTypedCharSupportWinConsoleIAccessibleWindowNVDAObject object at 0x012CDDB0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init_.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\window\winConsole.pyc", line 62, in event_gainFocus
File "NVDAObjects\behaviors.pyc", line 384, in event_gainFocus
File "NVDAObjects_init_.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:21:07.931) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_KeyboardHandlerBasedTypedCharSupportWinConsoleIAccessibleWindowNVDAObject object at 0x012B8630> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\window\winConsole.pyc", line 62, in event_gainFocus
File "NVDAObjects\behaviors.pyc", line 384, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:21:11.351) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_KeyboardHandlerBasedTypedCharSupportWinConsoleIAccessibleWindowNVDAObject object at 0x012B82F0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\window\winConsole.pyc", line 62, in event_gainFocus
File "NVDAObjects\behaviors.pyc", line 384, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:21:34.526) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_IAccessibleRichEdit50WindowNVDAObject object at 0x012B82F0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "appModules\nvda.pyc", line 86, in event_gainFocus
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:22:51.736) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_KeyboardHandlerBasedTypedCharSupportWinConsoleIAccessibleWindowNVDAObject object at 0x098071B0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\window\winConsole.pyc", line 62, in event_gainFocus
File "NVDAObjects\behaviors.pyc", line 384, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:23:38.970) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x012B89F0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:24:04.541) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x012B8390> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:24:22.298) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:24:26.921) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x012B8390> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:24:41.937) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.IAccessible.chromium.Document object at 0x04C9D890> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:24:42.673) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:24:44.236) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x03CE3B10> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:24:55.511) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.IAccessible.chromium.Document object at 0x04CAB8F0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:24:56.694) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:25:07.758) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.IAccessible.chromium.Document object at 0x04CCB070> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:25:09.110) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1242, in event_treeInterceptor_gainFocus
File "browseMode.pyc", line 1550, in event_gainFocus
File "treeInterceptorHandler.pyc", line 135, in _set_passThrough
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - garbageHandler.notifyObjectDeletion (11:25:14.985) - MainThread (7188):
Garbage collector has found one or more unreachable objects. See further warnings for specific objects.
Stack trace:
File "nvda.pyw", line 215, in
File "core.pyc", line 550, in main
File "wx\core.pyc", line 2134, in MainLoop
File "gui_init
.pyc", line 1050, in Notify
File "core.pyc", line 520, in run
File "queueHandler.pyc", line 88, in pumpAll
File "queueHandler.pyc", line 55, in flushQueue
File "eventHandler.pyc", line 65, in queueEventCallback
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 225, in doPreGainFocus
File "api.pyc", line 109, in setFocusObject
File "baseObject.pyc", line 42, in get
File "baseObject.pyc", line 146, in getPropertyViaCache
File "NVDAObjects_init
.pyc", line 539, in get_container
File "baseObject.pyc", line 42, in get
File "baseObject.pyc", line 146, in getPropertyViaCache
File "NVDAObjects\IAccessible_init
.pyc", line 971, in get_parent
File "IAccessibleHandler_init
.pyc", line 465, in accParent
File "comtypesMonkeyPatches.pyc", line 26, in call
File "comtypes\client_init
.pyc", line 44, in wrap_outparam
File "comtypes\client_init
.pyc", line 95, in GetBestInterface
File "comtypes\client\dynamic.pyc", line 30, in Dispatch
File "comtypes\client\dynamic.pyc", line 61, in init
File "garbageHandler.pyc", line 23, in del
File "garbageHandler.pyc", line 63, in notifyObjectDeletion
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.001) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.Document object at 0x04CABEF0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.001) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x32c13e4 at 9762670>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.001) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x32c1744 at 9762e40>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.WindowRoot object at 0x04CABF30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x012B82D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c0f64 at 9762bc0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.WindowRoot object at 0x04CABC30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible) ptr=0xdad364 at 97629e0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x012CD7F0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.WindowRoot object at 0x08CF2370>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A73D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible) ptr=0xdad364 at 4c96bc0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x098077D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d6d244 at 4c86260>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d6d2d4 at 12d0170>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible) ptr=0x767194c at 4c86df0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.window.Desktop object at 0x012CDFF0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2CB0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2C30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2F90>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2E10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2AB0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2F10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2950>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7F10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7DD0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7650>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A75D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7550>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A74B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7830>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7B70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7970>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7D90>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.002) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7590>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7CF0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7B50>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7450>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7C70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7950>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7530>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7050>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7410>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7070>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d6d244 at 4c863f0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d6d2d4 at 4c86c60>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6D70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x09807A70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CABCF0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CABA70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2710>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB28B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB29F0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2E90>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2690>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2B10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012CD1B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012CDFD0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012B8DD0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012B83B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012B86B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012B8AF0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012B8E70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7770>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7270>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7670>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7F50>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7D30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7A10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7ED0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7710>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7D50>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7E70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7E50>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A78B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7310>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.007) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A70D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012A7FD0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6050>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB60B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6110>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6170>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB61D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6230>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6290>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB62F0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6350>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB63B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6410>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6470>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB64D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6530>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6590>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB65F0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6650>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB66B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6710>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6770>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB67D0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6830>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6890>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB68F0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6950>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB69B0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6A10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6A70>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6AD0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6B30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6B90>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6BF0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6C50>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6CB0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6D10>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c0f64 at 4cc7c60>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.Document object at 0x04CCB070>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x32c13e4 at 4c9c530>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.012) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x32c1744 at 4cc7800>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c78cc at 12d0260>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x012B8630>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7c6b53c at 4c866c0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7c6b8e4 at 4c86490>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7c6b77c at 4c86030>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x03CE3B50>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7c6b4f4 at 4c86ee0>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7c6b6a4 at 4c96710>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.017) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7c6b584 at 9762260>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x012B8E30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7c6b65c at 9762080>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0xdad0dc at 9762120>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0xdad3f4 at 4cc7f30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x04CB2770>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0xdad5a4 at 9762f30>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0xdacf2c at 9762170>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c0f64 at 4cc7760>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.Document object at 0x012CD790>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x32c13e4 at 4cc7b20>
WARNING - garbageHandler.notifyObjectDeletion (11:25:15.021) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x32c1744 at 4cc76c0>
ERROR - garbageHandler.collectionCallback (11:25:15.025) - MainThread (7188):
Found at least 137 unreachable objects in run
ERROR - eventHandler.executeEvent (11:25:17.752) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x04C9DB50> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1242, in event_treeInterceptor_gainFocus
File "browseMode.pyc", line 1565, in event_gainFocus
File "browseMode.pyc", line 1242, in
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:25:23.761) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1242, in event_treeInterceptor_gainFocus
File "browseMode.pyc", line 1550, in event_gainFocus
File "treeInterceptorHandler.pyc", line 135, in _set_passThrough
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:25:32.522) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_ButtonIa2WebIAccessible object at 0x012B8570> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1550, in event_gainFocus
File "treeInterceptorHandler.pyc", line 142, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:25:33.439) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x04C9DB50> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1567, in event_gainFocus
File "browseMode.pyc", line 1304, in _set_selection
File "cursorManager.pyc", line 110, in _set_selection
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:25:34.146) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x012B8D70> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1550, in event_gainFocus
File "treeInterceptorHandler.pyc", line 132, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:25:34.179) - MainThread (7188):
error executing event: caret on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x012B8D70> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1286, in event_caret
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 193, in event_caret
File "NVDAObjects\IAccessible_init
.pyc", line 1479, in event_caret
File "NVDAObjects_init
.pyc", line 1155, in event_caret
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:25:35.731) - MainThread (7188):
error executing script: <bound method BrowseModeTreeInterceptor.script_disablePassThrough of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x04CB6190>> with gesture 'escape'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "browseMode.pyc", line 558, in script_disablePassThrough
File "treeInterceptorHandler.pyc", line 142, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:25:36.841) - MainThread (7188):
error executing script: <bound method CursorManager.script_topOfDocument of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x04CB6190>> with gesture 'control+home'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "cursorManager.pyc", line 244, in script_topOfDocument
File "cursorManager.pyc", line 149, in _caretMovementScriptHelper
File "browseMode.pyc", line 1304, in _set_selection
File "cursorManager.pyc", line 110, in _set_selection
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - RPC process 6560 (nvda_slave.exe) (11:25:54.367) - Dummy-13 (9324):
main.main:
slave error
Traceback (most recent call last):
File "nvda_slave.pyw", line 93, in main
File "comHelper.pyc", line 22, in lresultFromGetActiveObject
File "comtypes\client_init
.pyc", line 180, in GetActiveObject
File "comtypes_init
.pyc", line 1245, in GetActiveObject
File "_ctypes/callproc.c", line 935, in GetResult
OSError: [WinError -2147221021] Операция недоступна
ERROR - eventHandler.executeEvent (11:26:23.721) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_OutlookUIAWordDocumentWordDocumentEditableTextWithAutoSelectDetectionUIAWindowNVDAObject object at 0x01231C70> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:26:40.976) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x01231A50> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:26:45.046) - MainThread (7188):
error executing script: <bound method BrowseModeTreeInterceptor.script_activatePosition of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x04CB6190>> with gesture 'enter'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "browseMode.pyc", line 518, in script_activatePosition
File "browseMode.pyc", line 542, in _focusLastFocusableObject
File "browseMode.pyc", line 1301, in _activatePosition
File "browseMode.pyc", line 506, in _activatePosition
File "treeInterceptorHandler.pyc", line 132, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:26:47.146) - MainThread (7188):
error executing script: <bound method BrowseModeTreeInterceptor.script_disablePassThrough of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x04CB6190>> with gesture 'escape'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "browseMode.pyc", line 558, in script_disablePassThrough
File "treeInterceptorHandler.pyc", line 142, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:26:48.691) - MainThread (7188):
error executing script: <bound method BrowseModeTreeInterceptor.addQuickNav.. of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x04CB6190>> with gesture 'b'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "browseMode.pyc", line 452, in
File "browseMode.pyc", line 423, in _quickNavScript
File "browseMode.pyc", line 210, in moveTo
File "browseMode.pyc", line 1304, in _set_selection
File "cursorManager.pyc", line 110, in _set_selection
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:26:52.569) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:27:07.854) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:27:19.152) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.IAccessible.chromium.Document object at 0x0125A970> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1282, in event_treeInterceptor_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:28:13.841) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x012B8AF0> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1550, in event_gainFocus
File "treeInterceptorHandler.pyc", line 142, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:28:14.537) - MainThread (7188):
error executing event: caret on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x0945E550> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 193, in event_caret
File "NVDAObjects\IAccessible_init
.pyc", line 1479, in event_caret
File "NVDAObjects_init
.pyc", line 1155, in event_caret
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - queueHandler.flushQueue (11:28:14.671) - MainThread (7188):
Error in func VirtualBuffer.loadBufferDone
Traceback (most recent call last):
File "queueHandler.pyc", line 55, in flushQueue
File "virtualBuffers_init
.pyc", line 470, in _loadBufferDone
File "browseMode.pyc", line 1242, in event_treeInterceptor_gainFocus
File "browseMode.pyc", line 1550, in event_gainFocus
File "treeInterceptorHandler.pyc", line 135, in _set_passThrough
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:28:31.387) - MainThread (7188):
error executing script: <bound method BrowseModeTreeInterceptor.script_disablePassThrough of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x0125AA50>> with gesture 'escape'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "browseMode.pyc", line 558, in script_disablePassThrough
File "treeInterceptorHandler.pyc", line 142, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 273, in update_TextInfoRegion
self.addTextWithFields(sel, formatConfig, isSelection=True)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:28:32.831) - MainThread (7188):
error executing script: <bound method CursorManager.script_topOfDocument of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x0125AA50>> with gesture 'control+home'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "cursorManager.pyc", line 244, in script_topOfDocument
File "cursorManager.pyc", line 149, in _caretMovementScriptHelper
File "browseMode.pyc", line 1304, in _set_selection
File "cursorManager.pyc", line 110, in _set_selection
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in _doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in _addTextWithFields
field, formatFieldAttributesCache, self._isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - scriptHandler.executeScript (11:28:37.272) - MainThread (7188):
error executing script: <bound method BrowseModeTreeInterceptor.script_activatePosition of <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x0125AA50>> with gesture 'enter'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "browseMode.pyc", line 518, in script_activatePosition
File "browseMode.pyc", line 542, in _focusLastFocusableObject
File "browseMode.pyc", line 1301, in _activatePosition
File "browseMode.pyc", line 506, in _activatePosition
File "treeInterceptorHandler.pyc", line 132, in _set_passThrough
File "review.pyc", line 127, in setCurrentMode
File "api.pyc", line 205, in setReviewPosition
File "braille.pyc", line 2039, in handleReviewMove
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:28:38.437) - MainThread (7188):
error executing event: caret on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x0945E550> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1286, in event_caret
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 193, in event_caret
File "NVDAObjects\IAccessible_init
.pyc", line 1479, in event_caret
File "NVDAObjects_init
.pyc", line 1155, in event_caret
File "braille.pyc", line 1950, in handleCaretMove
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:29:09.981) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x03FF2D30> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "browseMode.pyc", line 1565, in event_gainFocus
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 277, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - eventHandler.executeEvent (11:29:47.508) - MainThread (7188):
error executing event: gainFocus on <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x0125A930> with extra args of {}
Traceback (most recent call last):
File "eventHandler.pyc", line 212, in executeEvent
File "eventHandler.pyc", line 261, in doPreGainFocus
File "browseMode.pyc", line 1242, in event_treeInterceptor_gainFocus
File "browseMode.pyc", line 1565, in event_gainFocus
File "browseMode.pyc", line 1242, in
File "NVDAObjects\behaviors.pyc", line 185, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1580, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 243, in update
fn(self)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 259, in update_TextInfoRegion
self.addTextWithFields(chunk, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\documentFormatting.py", line 240, in addTextWithFields_edit
fn(self, info, formatConfig
, isSelection)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 710, in addTextWithFields
field, formatFieldAttributesCache, self.isFormatFieldAtStart, formatConfig)
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 518, in getFormatFieldBraille
textAlign = normalizeTextAlign(field.get("text-align"))
NameError: name 'normalizeTextAlign' is not defined
ERROR - garbageHandler.notifyObjectDeletion (11:29:49.526) - MainThread (7188):
Garbage collector has found one or more unreachable objects. See further warnings for specific objects.
Stack trace:
File "nvda.pyw", line 215, in
File "core.pyc", line 550, in main
File "wx\core.pyc", line 2134, in MainLoop
File "wx\core.pyc", line 3240, in
File "gui_init
.pyc", line 157, in showGui
File "gui_init
.pyc", line 582, in onActivate
File "gui_init
.pyc", line 1050, in Notify
File "core.pyc", line 520, in run
File "queueHandler.pyc", line 88, in pumpAll
File "queueHandler.pyc", line 55, in flushQueue
File "eventHandler.pyc", line 65, in queueEventCallback
File "eventHandler.pyc", line 217, in executeEvent
File "eventHandler.pyc", line 96, in init
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\remote\globalPlugins\remoteClient_init
.py", line 426, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 152, in event_gainFocus
nextHandler()
File "eventHandler.pyc", line 105, in next
File "appModules\nvda.pyc", line 86, in event_gainFocus
File "eventHandler.pyc", line 105, in next
File "NVDAObjects\IAccessible_init
.pyc", line 1861, in event_gainFocus
File "NVDAObjects_init
.pyc", line 1106, in event_gainFocus
File "braille.pyc", line 1910, in handleGainFocus
File "braille.pyc", line 1915, in doNewObject
File "braille.pyc", line 1577, in getFocusRegions
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\objectPresentation.py", line 123, in update_NVDAObjectRegion
super(braille.NVDAObjectRegion, self).update()
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patches.py", line 167, in update_region
cursorPos=self.cursorPos
File "louisHelper.pyc", line 65, in translate
File "louis_init
.pyc", line 252, in translate
File "garbageHandler.pyc", line 23, in del
File "garbageHandler.pyc", line 63, in notifyObjectDeletion
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.Document object at 0x04CB2BF0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7d70844 at 12d0260>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d708d4 at 4c86490>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.WindowRoot object at 0x04C9D890>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBuf object at 0x01257D90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB27F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d70c34 at 4c866c0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.WindowRoot object at 0x01257C90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible) ptr=0xdad364 at 4cc7300>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x01231C10>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.WindowRoot object at 0x01231FD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2830>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x04CB2AD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible) ptr=0xdad364 at 4c86d00>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x01257CD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.547) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d6d244 at 4c91620>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d6d2d4 at 4c960d0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible) ptr=0x32c13e4 at 9762260>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.window.Desktop object at 0x04CB2C90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF24D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2CB0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2D10>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2370>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2A50>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF20B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2B90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2970>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2650>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF27D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2610>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2A10>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2C10>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2310>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF25D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2B50>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF26F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2ED0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2F70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF26B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.552) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2AF0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2670>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2690>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF27F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2B30>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2410>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2770>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2390>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF20D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2E30>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2C50>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB69D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB67B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB63D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6D70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6410>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB67F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6DD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6BD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6610>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB60B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB66B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6E50>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6030>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6830>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6CB0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6670>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6A10>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB6FD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7df97dc at 4c86670>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7df96bc at 4c962b0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7df94c4 at 4c86e90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleHypertext) ptr=0x7d706dc at 4c86030>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x04CB6930>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.557) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d6d244 at 4c86350>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d6d2d4 at 4c86170>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d6f404 at 4c86c60>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7d6f134 at 4c86990>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d6f4dc at 4c86ee0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB64B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2C90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2170>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2FF0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2CF0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2EB0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x03FF2490>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01231BD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01231810>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2ED0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2810>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x04CB2730>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012573B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257050>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257030>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257970>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257750>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257F50>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257F70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012577D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257170>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257E30>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257DD0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012577B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x012572D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257EF0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257F10>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x01257E50>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A070>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A0D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A130>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A190>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A1F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.562) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A250>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A2B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A310>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A370>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A3D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A430>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A490>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A4F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A550>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A5B0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A610>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A670>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A6D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A730>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A790>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.ChromeVBufTextInfo object at 0x0125A7F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x012B8AF0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7671cac at 4c86f30>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x767194c at 4000cb0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x012B8D70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x32c1234 at 4cc7b70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x32c130c at 40009e0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.567) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x767170c at 4000d00>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x04CB6510>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c1984 at 40007b0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x01231D90>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x03FF25F0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x03FF2450>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.Document object at 0x01257C30>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c1984 at 40092b0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x32c1234 at 4cc7580>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x32c130c at 4c91a30>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7c46a94 at 4009080>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7c46d1c at 4009300>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7c465cc at 40090d0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7c4677c at 4009170>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x39e40b4 at 4009120>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x39e3f04 at 4009030>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x39e39ac at 4009350>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x39e4024 at 4009490>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.571) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x39e3f94 at 40093f0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.chromium.Document object at 0x0125AA70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d70c34 at 4c86df0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7d70844 at 4000f80>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d708d4 at 4000bc0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7d70c34 at 4009440>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7d70844 at 4009580>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x7d708d4 at 4009530>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x7671c64 at 4009b70>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <NVDAObjects.Dynamic_EditableTextWithAutoSelectDetectionEditorIa2WebIAccessible object at 0x03FF29D0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x7671874 at 4009b20>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x76715a4 at 40094e0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleHypertext) ptr=0x839754c at 40098f0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessible2) ptr=0x32c1c54 at 4009620>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <NVDAObjects.IAccessible.ia2Web.Ia2Web object at 0x01231EB0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleAction) ptr=0x32c17d4 at 4009bc0>
WARNING - garbageHandler.notifyObjectDeletion (11:29:49.576) - MainThread (7188):
Deleting unreachable object <POINTER(IAccessibleText) ptr=0x32c18f4 at 40095d0>
ERROR - garbageHandler._collectionCallback (11:29:49.576) - MainThread (7188):
Found at least 168 unreachable objects in run

Global dictionary doesn't work when input and output tables are different

Reported by direct email to me:

The global dictionary is working, but only in case that input and output tables are the same.
If I select Hebrew table as my input and output table then I can see also Russian from the global dictionary when typing on the normal keyboard or reading text. But if I select Hebrew table as my output table and then select Russian as my input table, i can not see russian characters while typing or reading.
If I select Russian braille for computer code  as my output and input tables I can see Hebrew characters from the global dictionary when typing Hebrew on the normal keyboard or reading text, but I can not see Hebrew characters when the output table is remaining Russian and the input table is set to Hebrew.

Code refactoring: edit various components to make them conform with Python idioms and to optimize for speed

Hi,

The following will require extensive testing as it concerns optimizations:

Although Braille Extender works beautifully, there are many places where it can benefit from code rewrite to conform with Python idiom, syntax suggestions, and optimize for speed. For example, when one obtains an overview of the currently active input and output braille tables, a function named utils.combinationDesign will be run. Part of its job is to convert braille dots to a representation suitable for output. At the moment a while loop is used, but it was found that z for loop or a subtle optmization would benefit readability and speed.

Note on speed: in order to truly test the effectiveness of speed optimizations, one must:

  1. Benchmark the code path in question multiple times (preferably with time.time() and friends).
  2. In order to truly optimize for speed, bytecode disassembly is a must.

To illustrate the second point, in combination design function found in utils module, each iteration of the while loop will do the following:

  1. Before while loop is invoked, dot (index) is set to 1.
  2. Current dot value (represented by the variable "i") will be converted into a string, not once but twice (first to obtain the dot, second time to check membership).
  3. The eventual result string (represented by the variable "out") will be concatenated either with the dot value or unicode for dots 3-6.

The function takes 31 Python virtual machine instructions. Converting this into a for loop results in 31 instructions but with the following change: instead of assigning the variable i to 1 in the beginning, it is incremented as part of the for loop with the range set to (1, 9). This makes the code cleaner.

But there is an optimization opportunity: what if instead of treating the dots as integers, treat them as a character? This results in:

  1. Instead of a range-based for loop or a traditional integer-based while loop, the variable i will iterate over a string (string is a container as far as Python's iteration protocol is concerned).
  2. No more integer to string conversion as data can be compared directly.

This results in the function using only 25 Python virtual machine instructions. Because combination design function will be called whenever a dot combination exists in the input and output table, this optimization results in savings of hundreds of bytecode instructions. In order to do this kind of optimization, bytecode disassembly is a must.

There are many other places where this kind of edits would benefit the add-on, not only for code readability but also for future maintenance. As for when the accompanying pull request will show up, it won't be done until #69 is done.

P.S. while at it, I propose adding source code comments (finally).

Thanks.

when opening settings and arrowing to open some panels, settings are broken

here is the log:
ERROR - unhandled exception (16:55:12.030) - MainThread (4392):
Traceback (most recent call last):
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 366, in onCategoryChange
super().onCategoryChange(evt)
File "gui\settingsDialogs.pyc", line 597, in onCategoryChange
File "gui\settingsDialogs.pyc", line 579, in _doCategoryChange
File "gui\settingsDialogs.pyc", line 500, in _getCategoryPanel
File "gui\settingsDialogs.pyc", line 275, in init
File "gui\settingsDialogs.pyc", line 285, in _buildGui
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\auto_scroll.py", line 135, in makeSettings
initial=get_auto_scroll_delay()
File "gui\guiHelper.pyc", line 295, in addLabeledControl
File "gui\guiHelper.pyc", line 172, in init
File "gui\nvdaControls.pyc", line 81, in init
TypeError: SpinCtrl(): arguments did not match any overloaded call:
overload 1: too many arguments
overload 2: argument 9 has unexpected type 'str'
INFO - config.ConfigManager.save (16:55:26.290) - MainThread (4392):
Base configuration saved
ERROR - gui.settingsDialogs.new (17:14:30.302) - MainThread (4392):
Opening new settings dialog while instance still exists: <globalPlugins.brailleExtender.settings.AddonSettingsDialog object at 0x07C3FBC0>
also the dialogs are broken in such a way that NVDA just says panel

Undefined character representation and text descriptions features not working correctly together

NVDA 2019.3.1, Braille Extender 20.04.20:296059c, with the Polish 8-dot computer braille table.

Having both the option to have both a different undefined character representation as well as descriptions of undefined characters checked doesn't seem to give correct results, or at least the options don't work how I expect. Here's what I'm seeing with a few combinations:

  • With representation set to one of the options that display the character codes, like HUC6/8, Binary, etc, and descriptions unchecked, the feature works and I always get representations in whatever style I selected from the ones above.
  • With representation set to the same options as above but also with descriptions checked, the undefined characters always get displayed with liblouis style hex codes, and if a character has a description, it gets displayed as well surrounded by more hex codes. The characters set to indicate start and end of a description seem to be never used.
  • With representation set to any of the other options (question mark, empty cell, custom pattern, etc) no matter whether descriptions are checked or not, every undefined character gets displayed with a start and end tag with nothing inside it, even if the character does have a description.

What I would expect to happen is that for characters that have a description I'd just see the description surrounded by the start and end tags, otherwise you'd get the undefined representation. If this isn't how the feature is supposed to work feel free to correct me on this, though in that case I think that should be explained somewhere.

Braille edictionary

This issue suggests to add a "Braille dictionary" in the BrailleExtender addon, waiting to show-case this to NVDA vanilla.

A Braille dictionary would be extremely useful. For users, it would allow to override or indicate Braille cells to display for a given character representation, regardless of their Braille table's representation (these Braille representations would always take precedence over the user's Braille table). It would allow to override the tab symbol for example, or another symbol defined in the Braille table used by the user where the user is not satisfied with the default representation but doesn't want to create a full Braille table just to override one or two symbols.

Adding a new dialog for the Braille dictionary in the BrailleExtender's settings might be the best approach: this dialog would be quite close to the speech dictionary setting. Adding a new representation would be done in the same way. The difference is that the representation (second field on the speech dictionary "add" dialog) would need to be a numeric representation of the Braille cell(s) to show: I would suggest using the numeric Braille representation as Liblous does (like 345678 or 34-16 for several cells). This might sound technical, but I'm fairly positive the change would be straightforward if you need to use the Braille dictionary in the first place.

Storing these shouldn't be done in the Braille table itself: for one thing, accessing the Braille tables is not possible for someone without administrator privileges. For another, when NVDA updates and replaces the Braille table, these representations would be lost. For a third, NVDA doesn't like modifying these files (see below). And finally, editing the Braille table by editing the file is extremely complex as the table might be spread over several files, some of them shared. So I would suggest to store it independently, much like the speech dictionary itself.

This feature is important for Braille users. Defining a new Braille table is not the best course for most users facing the need to "override" some Braille data. Playing with the default Braille table files (in NVDA/liblouis/tables) and modifying the symobls in them directly, as was possible in 2018.*, is no longer possible for some reason, and doing so would make NVDA crash (or at least, the Braille to crash) and force NVDA to reinstall itself. A Braille dictionary would, in my opinion anyway, be as important as the speech dictionary: some users like myself don't rely on speech at all, only using Braille as an NVDA output. In this case, Braille dictionary implementation should have received the same priority than the implementation of the speech dictionary. That being said, of course, not as many users rely on Braille, there are more users relying on speech only.

References: nvaccess/nvda#4601

Braille attributes: add the possibility to make the dots 7 and/or 8 blink

Reported by direct email to me:

Some members of NVDA international and I were playing with the idea of making discernible multiple characteristics of letters or symbols such as italics, boldface, underlined. We are wondering whether it might be possible to have dot 8 blink in varied intervals. I saw that your add-on already offers dot combinations for italics and boldface.
However, when you have texts containing more than two such characteristics,
then using dots 7 or 7+8 alone will not facilitate correctly identifying all
the various characteristics. I suggested dot 8 to blink at rates of varied
length because dot 7 is most often reserved for indicating capital letters.
Or maybe you could let the user “combine” his or her personal preferences as to which dot he/she wants to blink.

Braille converter feature

Goal: just write or display any text in braille or normal text and press a simple shortcut to start the conversion process. Using liblouis and/or conversion features already present in the add-on.

Suggested implementation (draft, to improve):

Default gesture: NVDA+ALT+p
Show a dialog box with:

  • A first radio-box to specify the type of the source:
    • BRF. E.g.: HELLO
    • Braille Unicode. E.g.: ⠓⠑⠇⠇⠕
    • Dot patterns. E.g.: (125-15-123-123-135
    • Normal text. E.g.: hello
  • A second radio-box to choose the type of the destination:
    • Braille Unicode.
    • BRF.
    • Dot patterns.
    • Normal text.
  • A list-box to declare the braille table of the source / destination. E.g: UEB contracted, german uncontracted, etc..

can not edit or create profiles

i open the rpofile editor, select the default profile, and then select the "single keys" category, then i select the key i want to assign a braile gesture to it.
i press on "assign gesture" button, but nothing happens.
using vario ultra 20 braille display, and the latest stable release.

Freedomscientific: Focus navigation "wizwheel" keys, right and left, should be switched

Hello,

I've been using Braille Extender seriously for a week or so now, and love it! The many keyboard commands, the work on formatting, and many more settings that I suspect even JAWS will ever have, really sets Braille Extender as a leader in use of braille displays. There are just a few issues that I've found, and one, not showing the paragraph indentation, that I'm not sure is an issue, so just tell me and I'll make an issue about that or not.

This issue is about the key map configuration. I use a Focus 14, fifth generation, braille display. On it, there are many buttons, a pair of two of these handling navigation. The one on the left, in JAWS, handles lines, and on the right handles scrolling. You can change this by a button above the scroll buttons. In NVDA, without Braille Extender, the right scroll buttons pan the display, scrolling one display length at a time. In Braille Extender, though, they move by lines.

This is important because there are times where the panning buttons themselves, on the front side of the display, are uncomfortable to press. I can use the left navigation scroll buttons,, called LeftWizWheel, but that's awkward to press when my fingers are at the right end of the display. So, I'd like the function of these two to be switched, so that the RightWizWheel buttons, up and down, pan the display, while the LeftWizWheel buttons move by line.

One-hand mode feature

First, add an option to pick up between left hand or right hand.

Then, in practice:

If I want to type ⠛:

  • left-hand mode: enter dots 12, then 12
  • right-hand mode: enter dots 45, then 45

If I want to type ⠇:

  • left-hand mode: enter dots 123, then space
  • right-hand mode: enter dots 456 then space

If I want to type ⠸:

  • left-hand mode: press space, then enter dots 123
  • right-hand mode: press space, then dots 456

For shortcuts and other gestures: TBD

Integrate portions of braille extender into NVDA core

I believe braille extender has primarily been developed to overcome shortcomings in NVDA core with regard to braille support. As a member of the NVDA Council who uses braille on a daily basis and lives in a country where braille support is important, I believe that some of its features really belong into the core of a screen reader.

Therefore, I think this issue might be a good platform to start discussing the what, the why and the how about issues that should be ported or integrated into the core of NVDA. We can also have this discussion on the NVDA development list or the add-ons list, but I"m afraid it will make the discussion too scattered and cluttered.

I believe the following Braille Extender features deserve to have a place in NVDA's core base:

  • Do not interrupt speech while scrolling braille: nvaccess/nvda#2124. I'm currently working on this
  • Font attributes shown with dots 7 and 8 or either one of them: nvaccess/nvda#7097. This issue relates to nvaccess/nvda#1885, nvaccess/nvda#3022 and nvaccess/nvda#6868
  • Allow reporting the character you're routing to with cursor routing commands: I don't think there's an NVDA issue for that yet, but I could be wrong
  • automatic review cursor tethering in terminal windows.
  • switch between several input/output braille tables. In my opinion, this is covered by nvaccess/nvda#8844, which allows you to add multiple configuration profiles and switch to them with shortcuts.
  • display tab signs as spaces
  • say the current line during text scrolling

cc @Andre9642 @zstanecic @Adriani90 @josephsl

Table dictionary stopped working

Hello,

I can't be sure when that happened, because I changed my computer, so I had to create a table dictionary again. But it seems it's not working, as it once did.

  1. I open the notepad in Windows.
  2. I press tab and copy the tab sign (\x09).
  3. I press NVDA + N to open the menu, BrailleExtender, table dictionaries, global dictionary.
  4. I press add. I add the tab in the first field, 8-7-8-7 in the second, no comment, forward only.
  5. I press OK to close both dialogs. Nothing changes.
  6. Even if I restart NVDA, tab is still displayed as it did before.

I tried with several characters. No dice. The characters do appear in the list of pattern, in the global dictionary dialog. It just doesn't apply.

I'm running BrailleExtender on the stable channel. Perhaps that's the issue?

Thanks,
Vincent

Add-on gestures: convert gestures map into script decorator functions

Hi,

Continuing code refactoring, this time code modernization:

In 2018, scriptHandler.script decorator was introduced, allowing add-on developers to specify gestures, input help messages, and categories for a script in one place. In case of Braille Extender add-on, using script decorator modernizes the add-on. It also has another benefit: it removes use of OrderedDict when defining gestures, as Python 3.7 guarantees insertion order for dictionaries (this may involve either removing gestures map or rearranging methods in the global plugin class to preserve original gestures map order).

Thanks.

Code refactoring (advice): do not import everything from a module unless have to

Hi,

Code refactoring in progress:

One of the issues posed by the add-on source code is use of "import everything" idiom, which takes the form of:

from someModule import *

Although this has its uses, Python documentation and veterans tend to discourage this idiom. Although this does let developers use module contents without specifying scope, it makes debugging and maintenance harder, and when it comes to linting, it confuses linters (Flake8 experienced confusion when it tried to find out what some variables meant).

Therefore I advise not using "import everything" idiom, or if one must use it, use it when it is absolutely necessary. This is more so when importing things from "common" module.

Thanks.

rotor under dev with focus braille-display don't work

Hey,
If I try to press dot2+dot3+spacebar or dot5+dot6+spacebar to rotate the rotor, nothing happens here.
Nvda 2020.2
braille extender: dev-channel
braille-display: focus 40 blue from frindom scintific

here is a log snipped:

DEBUG - brailleDisplayDrivers.freedomScientific.BrailleDisplayDriver._onReceive (11:42:34.195) - braille._BgThread (264436):
Got packet of type b'\x03' with args: b'\x00' b'\x80' b'\x00'
IO - external:globalPlugins.brailleExtender.patches.InputManager.executeGesture (11:42:34.195) - braille._BgThread (264436):
Input: br(freedomScientific.Focus40):dot2+dot3+brailleSpaceBar
DEBUG - speech.manager.speechManagerUnitTest (11:42:34.210) - MainThread (75456):
SpeechManager- Cancel
DEBUG - audioDucking.AudioDucker.disable (11:42:34.210) - MainThread (75456):
Ignoring duplicate disable
ERROR - scriptHandler.executeScript (11:42:34.210) - MainThread (75456):
error executing script: <bound method GlobalPlugin.script_priorRotor of <globalPlugins.brailleExtender.GlobalPlugin object at 0x0AE8C3B0>> with gesture 'Leerzeichen mit Punkt 2 3'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "C:\Users\Christopher Pross\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 314, in script_priorRotor
if rotorItem > 0:
NameError: name 'rotorItem' is not defined
DEBUG - hwIo.IoBase._notifyReceive (11:42:34.305) - braille._BgThread (264436):
Read: b'\x03\x06\x80\x00'
DEBUG - brailleDisplayDrivers.freedomScientific.BrailleDisplayDriver._onReceive (11:42:34.305) - braille._BgThread (264436):
Got packet of type b'\x03' with args: b'\x06' b'\x80' b'\x00'
DEBUG - hwIo.IoBase._notifyReceive (11:42:34.389) - braille._BgThread (264436):
Read: b'\x03\x00\x80\x00'
DEBUG - brailleDisplayDrivers.freedomScientific.BrailleDisplayDriver._onReceive (11:42:34.390) - braille._BgThread (264436):
Got packet of type b'\x03' with args: b'\x00' b'\x80' b'\x00'
IO - external:globalPlugins.brailleExtender.patches.InputManager.executeGesture (11:42:34.390) - braille.BgThread (264436):
Input: br(freedomScientific.Focus40):dot2+dot3+brailleSpaceBar
ERROR - scriptHandler.executeScript (11:42:34.416) - MainThread (75456):
error executing script: <bound method GlobalPlugin.script_priorRotor of <globalPlugins.brailleExtender.GlobalPlugin object at 0x0AE8C3B0>> with gesture 'Leerzeichen mit Punkt 2 3'
Traceback (most recent call last):
File "scriptHandler.pyc", line 208, in executeScript
File "C:\Users\Christopher Pross\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init
.py", line 314, in script_priorRotor
if rotorItem > 0:
NameError: name 'rotorItem' is not defined

Make an user guide

The problem

The current documentation is not a good documentation but: a short description of the add-on + a listing of gestures mapped by the add-on. Also, the add-on contains several features that should be documented.

Suggested solution

In the first time, I'll write a French documentation (from the 21st).
Then I'll ask for help with the English translation (due to my English not being good). I hope to integrate the English and French documentation in mid-January.
The current documentation will be renamed something like “Profile gestures list”.

another unicode issue in polish windows version with braille extender

version: latest commit, a day ago,
steps to reproduce.
try to open the settings of the add-on
here is the log, wich shows the error,
ERROR - unhandled exception (17:04:31.528):
Traceback (most recent call last):
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender_init_.py", line 1637, in onSettings
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 64, in init
File "C:\Users\ninos\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\settings.py", line 365, in init
UnicodeEncodeError: 'ascii' codec can't encode character u'\u017c' in position 7: ordinal not in range(128)

expected: settings should be opened normally

Attributa cannot be controlled by NVDA profiles

In summary

NVDA profiles cannot specify several different options of Attributa, which would be handy.

Details

NVDA profiles are a very powerful way to customize most settings and to let the user decide in what circumstance apply them (whether manual or automatic). In my case, for instance, I like to see spelling errors marked in Braille (with dot 7 and 8). There are moments, however, when this is neither necessary nor helpful and I do need to see what dot 7 and 8 hold.

My solution was to create an NVDA profile to turn off, manually, Attributa (or at least, its "spelling error" setting). In some Word documents I edit, it's great to have the spelling errors shown. In other Word documents, this is not so useful. So I'd like to be able to turn off Attributa by simply selecting an NVDA manual profile. As far as Attributa is concerned, however, different configuration options cannot be stored in different NVDA profiles. There might be another way to do it, as Attributa seems to come with its own system for profiles (although only automatic, as far as I could see), and while not knowing how NVDA merges configuration based on profiles, I would guess this would be a welcome feature even if, perhaps, a little specific.

Thank you for your great job on this add-on,

Major error when reading

Hello,

Sorry to be the bearer of bad news. I noticed a scenario in which NVDA wasn't able to read anymore. Just pressing the arrow keys sent an error message to the log. I panicked, thinking it was due to Firefox's updates... but on disabling BrailleExtender addon, it works again.

To reproduce

  1. Go to https://www.python.org/downloads/release/python-382/
  2. Browse by titles (using h on my computer) until you see "Major new features of the 3.8 series, compared to 3.7", which should be a heading level 2.
  3. Press the down arrow key to read the first feature. And you shouldn't see it in Braille at least.

This happens if you are in the browser or if you copy/paste the webpage in notepad, which seems to indicate this error is triggered by "unicode recognition". We're in a list and I would guess the bullets used for the list create some kind of error.

Log output

Here's what my log says (I tried to extract the proper information).

ERROR - core.CorePump.run (12:19:39.018) - MainThread (9048):
errors in this core pump cycle
Traceback (most recent call last):
  File "core.pyc", line 517, in run
  File "braille.pyc", line 2216, in pumpAll
  File "braille.pyc", line 1952, in handlePendingCaretUpdate
  File "braille.pyc", line 1958, in _doCursorMove
  File "C:\Users\Admin\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\__init__.py", line 135, in update
    fn(self)
  File "braille.pyc", line 1044, in update
  File "C:\Users\Admin\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patchs.py", line 139, in update
    if config.conf["brailleExtender"]["undefinedCharReprMethod"] in [configBE.CHOICE_liblouis, configBE.CHOICE_HUC8, configBE.CHOICE_HUC6, configBE.CHOICE_hex, configBE.CHOICE_dec, configBE.CHOICE_oct, configBE.CHOICE_bin]: undefinedCharProcess(self)
  File "C:\Users\Admin\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patchs.py", line 213, in undefinedCharProcess
    ) for braillePos in allBraillePos}
  File "C:\Users\Admin\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\patchs.py", line 213, in <dictcomp>
    ) for braillePos in allBraillePos}
  File "C:\Users\Admin\AppData\Roaming\nvda\addons\BrailleExtender\globalPlugins\brailleExtender\utils.py", line 266, in getTextInBraille
    else: res = ''.join([chr(ord(ch)-0x8000+0x2800) for ch in louis.translateString(table, l, mode=louis.dotsIO)])
  File "louis\__init__.pyc", line 216, in translateString
RuntimeError: Can't translate: tables ['current'], inbuf b'\xe6(\x00\x00b\x00\x00\x00l\x00\x00\x00a\x00\x00\x00c\x00\x00\x00k\x00\x00\x00 \x00\x00\x00s\x00\x00\x00q\x00\x00\x00u\x00\x00\x00a\x00\x00\x00r\x00\x00\x00e\x00\x00\x00\xf4(\x00\x00', typeform None, mode 4
ERROR - core.CorePump.run (12:19:39.023) - MainThread (9048):
errors in this core pump cycle
Traceback (most recent call last):
  File "core.pyc", line 517, in run
  File "braille.pyc", line 2216, in pumpAll
  File "braille.pyc", line 1952, in handlePendingCaretUpdate
  File "braille.pyc", line 1957, in _doCursorMove
  File "braille.pyc", line 1457, in saveWindow
  File "braille.pyc", line 1234, in bufferPosToRegionPos
LookupError: No such position

Hope that helps!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.