From 895bbf96110e448b402a45fa6ef40aaf67674e09 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Wed, 31 Oct 2001 16:59:43 +0000 Subject: If the source folder is stock and the operation is GDK_ACTION_MOVE, always * e-storage-set-view.c (handle_evolution_path_drag_motion): If the source folder is stock and the operation is GDK_ACTION_MOVE, always return %FALSE as we don't want that to be allowed ever. svn path=/trunk/; revision=14543 --- shell/e-storage-set-view.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'shell/e-storage-set-view.c') diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index 70538cd9ef..d94160d53d 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -1016,10 +1016,15 @@ handle_evolution_path_drag_motion (EStorageSetView *storage_set_view, source_path = e_storage_set_view_get_current_folder (storage_set_view); if (source_path != NULL) { + EFolder *folder; int source_path_len; const char *destination_path_base; char *destination_path; + folder = e_storage_set_get_folder (priv->storage_set, source_path); + if (folder != NULL && e_folder_get_is_stock (folder)) + return FALSE; + source_path_len = strlen (path); destination_path_base = e_tree_memory_node_get_data (E_TREE_MEMORY (priv->etree_model), path); if (strcmp (destination_path_base, source_path) == 0) -- cgit v1.2.3