~ubuntu-branches/ubuntu/saucy/gnome-orca/saucy-proposed

« back to all changes in this revision

Viewing changes to src/orca/braille_generator.py

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2013-02-08 10:32:41 UTC
  • mfrom: (0.12.7)
  • Revision ID: package-import@ubuntu.com-20130208103241-fs030z0wasvhfpc7
Tags: 3.7.5-0ubuntu1
* New upstream release
  - New Feature
    + Structural navigation objects are now navigable by "list of" dialogs
  - Bug Fixes
    + Much better handling of egg-list-box for the new panels in
      gnome-control-center
    + Fix for bug 693159 - Orca doesnt echo words in gnome-terminal
    + Do not attempt to store an AtspiTable in a dictionary (fixes the
      presentation of cells when navigating in LibreOffice Calc)
  - New and updated translations (THANKS EVERYONE!!!):
    + bg            Bulgarian             Alexander Shopov
    + eu            Basque                Inaki Larranaga Murgoitio
    + nb            Norwegian bokmål      Kjartan Maraas
    + ne            Nepali                Him Prasad Gautam
    + pl            Polish                Piotr Drąg
    + sr            Serbian               Мирослав Николић
    + sr@latin      Serbian               Miroslav Nikolić
    + ug            Uyghur                Sahran, Gheyret Kenji

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        verbosityLevel = _settingsManager.getSetting('brailleVerbosityLevel')
130
130
 
131
131
        doNotPresent = [pyatspi.ROLE_UNKNOWN]
 
132
 
 
133
        # egg-list-box, e.g. privacy panel in gnome-control-center
 
134
        if obj.parent and obj.parent.getRole() == pyatspi.ROLE_LIST_BOX:
 
135
            doNotPresent.append(pyatspi.ROLE_FILLER)
 
136
 
132
137
        if verbosityLevel == settings.VERBOSITY_LEVEL_BRIEF:
133
138
            doNotPresent.extend([pyatspi.ROLE_ICON, pyatspi.ROLE_CANVAS])
134
139