[tomboy] Fix for #627872, makes attempting to rename special notebooks impossible



commit 1f4fc99da48ef5a573ec1b0d725c9a8948ea49e4
Author: Robert Nordan <rpvn robpvn net>
Date:   Sat Jun 25 13:36:19 2011 +0200

    Fix for #627872, makes attempting to rename special notebooks impossible
    
    Signed-off-by: Jared Jennings <jjennings src gnome org>

 Tomboy/RecentChanges.cs |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/Tomboy/RecentChanges.cs b/Tomboy/RecentChanges.cs
index e72a667..8b57d5a 100644
--- a/Tomboy/RecentChanges.cs
+++ b/Tomboy/RecentChanges.cs
@@ -1297,8 +1297,10 @@ namespace Tomboy
 			if (notebook is Notebooks.SpecialNotebook) {
 				// Bold the "Special" Notebooks
 				crt.Markup = string.Format ("<span weight=\"bold\">{0}</span>", notebook.Name);
+				crt.Editable = false;
 			} else {
 				crt.Text = notebook.Name;
+				crt.Editable = true;
 			}
 		}
 



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