Changeset 109

Show
Ignore:
Timestamp:
Sat Sep 24 04:10:19 2005
Author:
fredrikc
Message:

Fixed bug that TU tool bar did not update to reflect the current selected documents TU open/closed state.

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/transolution/xliffeditor/gtk_main.py

    r108 r109  
    422 422         self.menu_save.set_sensitive(doc_model.changed)  
    423 423          
      424         # setup the TU toolbars  
      425         for w in self.widgets_to_disable_when_tu_open:  
      426             w.set_sensitive(self.docpane.open_seg is None)  
      427         for w in self.widgets_to_disable_when_tu_closed:  
      428             w.set_sensitive(self.docpane.open_seg is not None)  
      429  
      430  
    424 431         self.interactive = True  
    425 432