single click in arrow works now
This commit is contained in:
parent
94167e45d9
commit
3117e65687
1 changed files with 12 additions and 0 deletions
|
@ -1936,6 +1936,18 @@ class roster_window:
|
||||||
try:
|
try:
|
||||||
path, column, x, y = self.tree.get_path_at_pos(int(event.x), \
|
path, column, x, y = self.tree.get_path_at_pos(int(event.x), \
|
||||||
int(event.y))
|
int(event.y))
|
||||||
|
model = self.tree.get_model()
|
||||||
|
iter = model.get_iter(path)
|
||||||
|
type = model.get_value(iter, 2)
|
||||||
|
if (type == 'group'):
|
||||||
|
if (self.tree.row_expanded(path)):
|
||||||
|
if x <= self.pixbufs['opened'].get_pixbuf()\ #The integer 10 is the xoffset
|
||||||
|
.get_width()+10:
|
||||||
|
self.tree.collapse_row(path)
|
||||||
|
else:
|
||||||
|
if x <= self.pixbufs['closed'].get_pixbuf()\
|
||||||
|
.get_width()+10:
|
||||||
|
self.tree.expand_row(path, False)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
self.tree.get_selection().unselect_all()
|
self.tree.get_selection().unselect_all()
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Add table
Reference in a new issue