~kklimonda/ubuntu/lucid/hamster-applet/lucid-proposed

« back to all changes in this revision

Viewing changes to hamster/applet.py

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-09-08 17:37:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080908173705-wvbg8ciiprf2lyoc
Tags: 2.23.92-0ubuntu1
* New upstream release (LP: #262744)
  - fixed code so that it works also with Python 2.4
  - Fixed bug with tasks falling into unsorted category (bug #548914)
  - Fixed error when switching tasks with doubleclick
  - Bump up pygtk and libgtk to 2.12, pyobject to 2.14
    intltool to 0.37.1
  - Downgrade XS-python and python b-d and depends to 2.4
* debian/control:
  - Change Homepage field to GNOME url
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
    def on_today_release_event(self, tree, event):
149
149
        pointer = event.window.get_pointer() # x, y, flags
150
150
        path = tree.get_path_at_pos(pointer[0], pointer[1]) #column, innerx, innery
151
 
        if path[1] == self.edit_column:
 
151
        
 
152
        if path and path[1] == self.edit_column:
152
153
            selection = tree.get_selection()
153
154
            (model, iter) = selection.get_selected()
154
155
            fact_id = model[iter][0]