tomboy r1786 - in trunk: . Tomboy/Notebooks



Author: btimothy
Date: Mon Jan 14 20:43:09 2008
New Revision: 1786
URL: http://svn.gnome.org/viewvc/tomboy?rev=1786&view=rev

Log:
2008-01-14  Boyd Timothy <btimothy gmail com> 

        * Tomboy/Notebooks/NotebooksTreeView.cs: Remove code that
          prevents a note from being dragged and dropped onto a
          SpecialNotebook.  This allows a user to drag and drop
          a note from a notebook onto the "All Notes" or "Unfiled
          Notes" notebook to remove them from a notebook.  Partial
          fix for bug #508311.



Modified:
   trunk/ChangeLog
   trunk/Tomboy/Notebooks/NotebooksTreeView.cs

Modified: trunk/Tomboy/Notebooks/NotebooksTreeView.cs
==============================================================================
--- trunk/Tomboy/Notebooks/NotebooksTreeView.cs	(original)
+++ trunk/Tomboy/Notebooks/NotebooksTreeView.cs	Mon Jan 14 20:43:09 2008
@@ -52,11 +52,6 @@
 			}
 			
 			Notebook destNotebook = Model.GetValue (iter, 0) as Notebook;
-			if (destNotebook is SpecialNotebook) {
-				Gtk.Drag.Finish (context, false, false, time_);
-				return;
-			}
-			
 			foreach (Uri uri in uriList) {
 				Note note = noteManager.FindByUri (uri.ToString ());
 				if (note == null)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]