diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-12-07 04:21:51 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-12-07 04:21:51 +0800 |
commit | a1725df2bba552edf4489d8163800c35800b0863 (patch) | |
tree | 42c7cc54285352980cd4babeebcc44054a660695 /widgets | |
parent | 1c0e0acdad02bca78628dc6902f95aabcc9b8f8c (diff) | |
download | gsoc2013-evolution-a1725df2bba552edf4489d8163800c35800b0863.tar.gz gsoc2013-evolution-a1725df2bba552edf4489d8163800c35800b0863.tar.zst gsoc2013-evolution-a1725df2bba552edf4489d8163800c35800b0863.zip |
Merging changes:
2001-12-04 Christopher James Lahey <clahey@ximian.com>
* e-tree-selection-model.c (e_tree_selection_model_change_cursor):
Unset selection->old_selection here.
svn path=/trunk/; revision=14912
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-tree-selection-model.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-tree-selection-model.c b/widgets/table/e-tree-selection-model.c index b8e63fb79f..04e74c0f96 100644 --- a/widgets/table/e-tree-selection-model.c +++ b/widgets/table/e-tree-selection-model.c @@ -1288,6 +1288,8 @@ e_tree_selection_model_change_cursor (ETreeSelectionModel *etsm, ETreePath path) row = etsm_cursor_row_real(etsm); + E_SELECTION_MODEL (etsm)->old_selection = -1; + e_selection_model_cursor_changed(E_SELECTION_MODEL(etsm), row, etsm->priv->cursor_col); e_selection_model_cursor_activated(E_SELECTION_MODEL(etsm), row, etsm->priv->cursor_col); } |