minor: dropped not droped

This commit is contained in:
Nikos Kouremenos 2005-11-09 10:55:42 +00:00
parent 8eaa1f45ad
commit cb3010993e
1 changed files with 4 additions and 4 deletions

View File

@ -2345,17 +2345,17 @@ _('If "%s" accepts this request you will know his status.') %jid)
return return
path_dest, position = drop_info path_dest, position = drop_info
if position == gtk.TREE_VIEW_DROP_BEFORE and len(path_dest) == 2 \ if position == gtk.TREE_VIEW_DROP_BEFORE and len(path_dest) == 2 \
and path_dest[1] == 0: # droped before the first group and path_dest[1] == 0: # dropped before the first group
return return
if position == gtk.TREE_VIEW_DROP_BEFORE and len(path_dest) == 2: if position == gtk.TREE_VIEW_DROP_BEFORE and len(path_dest) == 2:
# droped before a group : we drop it in the previous group # dropped before a group : we drop it in the previous group
path_dest = (path_dest[1], path_dest[1]-1) path_dest = (path_dest[1], path_dest[1]-1)
iter_dest = model.get_iter(path_dest) iter_dest = model.get_iter(path_dest)
iter_source = treeview.get_selection().get_selected()[1] iter_source = treeview.get_selection().get_selected()[1]
path_source = model.get_path(iter_source) path_source = model.get_path(iter_source)
if len(path_dest) == 1: # droped on an account if len(path_dest) == 1: # dropped on an account
return return
if path_dest[0] != path_source[0]: # droped in another account if path_dest[0] != path_source[0]: # dropped in another account
return return
iter_group_source = model.iter_parent(iter_source) iter_group_source = model.iter_parent(iter_source)
grp_source = model[iter_group_source][C_JID].decode('utf-8') grp_source = model[iter_group_source][C_JID].decode('utf-8')