diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-08 06:05:51 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-08 06:05:51 +0800 |
commit | c5c09ba7baa6f24cce04f29c6541492810bdb6f3 (patch) | |
tree | 921c8cbfcc6a72fb5a91fc969a912c24aa593199 | |
parent | 31c42749c183a53952fd21b25b442cfc93ce9a8f (diff) | |
download | gsoc2013-evolution-c5c09ba7baa6f24cce04f29c6541492810bdb6f3.tar.gz gsoc2013-evolution-c5c09ba7baa6f24cce04f29c6541492810bdb6f3.tar.zst gsoc2013-evolution-c5c09ba7baa6f24cce04f29c6541492810bdb6f3.zip |
moved a comment to a more appropriate location
svn path=/trunk/; revision=25365
-rw-r--r-- | mail/em-folder-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index 5996168b5f..585abaf10a 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -2543,10 +2543,10 @@ emft_tree_button_press (GtkTreeView *treeview, GdkEventButton *event, EMFolderTr if (event->button != 3 && !(event->button == 1 && event->type == GDK_2BUTTON_PRESS)) return FALSE; - /* select/focus the row that was right-clicked */ if (!gtk_tree_view_get_path_at_pos (treeview, (int) event->x, (int) event->y, &tree_path, NULL, NULL, NULL)) return FALSE; + /* select/focus the row that was right-clicked or double-clicked */ gtk_tree_view_set_cursor (treeview, tree_path, NULL, FALSE); if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) { |