2003-11-01 Tim Waugh <twaugh@redhat.com>

* src/PeopleStore.py: Fixed double-click behaviour (bug #834104).


svn: r2303
This commit is contained in:
Tim Waugh 2003-11-01 15:01:10 +00:00
parent b5acff953f
commit 6625405678
2 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,6 @@
2003-11-01 Tim Waugh <twaugh@redhat.com>
* src/PeopleStore.py: Fixed double-click behaviour (bug #834104).
2003-10-31 Tim Waugh <twaugh@redhat.com>
* src/Makefile.am: Remove DrawDoc.py, TextDoc.py.

View File

@ -98,7 +98,10 @@ class PeopleStore:
self.selection.connect('changed',select_func)
if event_func:
self.double_click = event_func
self.tree.connect('event',self.button_press)
self.tree.connect('row_activated', self.row_activated)
def row_activated (self, treeview, path, column):
self.double_click (treeview)
def enable_sort(self):
if self.cids[0] != -1:
@ -306,10 +309,3 @@ class PeopleStore:
if iter:
path = model.get_path(iter)
self.tree.scroll_to_cell(path,None,gtk.TRUE,0.5,0.5)
def button_press(self,obj,event):
if event.type == gtk.gdk._2BUTTON_PRESS and event.button == 1:
self.double_click(obj)
return 1
return 0