Changeset 2489

Show
Ignore:
Timestamp:
11/10/08 06:42:18 (2 months ago)
Author:
bzr
Message:

raille.TextInfoRegion?: If updateSelection() on the TextInfo? is not implemented, catch and ignore the exception. The user doesn't need to see this error when scrolling or cursor routing; it simply won't work.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-11-10 17:15:39.161000013 +1100 
        2 committer: Michael Curran <mick@kulgan.net> 
         1timestamp: 2008-11-10 17:31:11.575000048 +1100 
         2committer: James Teh <jamie@jantrid.net> 
        33properties:  
        44        branch-nick: main 
    • Property bzr:revision-id:v3-list-QlpoOTFBWSZTWbrL2vUAAB1VgAAQABCAQDrrnqAgAFCgaaGRkxBoTIJ6mmaNRwhndFAoNhZjh_YY4a01fOg1ulgNNC2UrzPdXXEnDpX8XckU4UJC6y9r1A..
      •  

        old new  
        2582582286 mick@kulgan.net-20081110061101-o2mp8b1lbmwvsqfe 
        2592592287 mick@kulgan.net-20081110061539-g5c1betajc96r4pc 
         2602288 jamie@jantrid.net-20081110063111-yiezajpdocu3fnjy 
    • Property bzr:file-ids
      •  

        old new  
        1 source/brailleDisplayDrivers/freedomScientific.py       freedomscientific.py-20081023031900-u4gqg7evunl8a3f8-1 
         1source/braille.py       braille.py-20080908070240-tjwqjsv7drp1kt8c-1 
  • trunk/source/braille.py

    r2485 r2489  
    274274                @type info: L{textHandler.TextInfo} 
    275275                """ 
    276                 info.updateSelection() 
     276                try: 
     277                        info.updateSelection() 
     278                except NotImplementedError: 
     279                        log.debugWarning("", exc_info=True) 
    277280 
    278281        def update(self):