/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to annotate/config.py

  • Committer: Curtis Hovey
  • Date: 2011-09-03 13:46:52 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110903134652-foz5thvhwg0kcolr
RemovedĀ unusedĀ code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    """
39
39
 
40
40
    def __init__(self, window):
41
 
        super(GAnnotateConfig, self).__init__(gannotate_config_filename())
 
41
        configobj.ConfigObj.__init__(self, gannotate_config_filename())
42
42
        self.window = window
43
43
        self.pane = window.pane
44
44
 
84
84
        return False
85
85
 
86
86
    def _save_pane_props(self, w, gparam):
87
 
        if gparam and gparam.name == "position":
 
87
        if gparam.name == "position":
88
88
            self["window"]["pane_position"] = w.get_position()
89
89
 
90
90
        return False