diff -aur tomboy-0.3.2-orig/Tomboy/Applet.cs tomboy-0.3.2/Tomboy/Applet.cs --- tomboy-0.3.2-orig/Tomboy/Applet.cs 2005-03-30 22:09:25.000000000 -0500 +++ tomboy-0.3.2/Tomboy/Applet.cs 2005-04-14 20:31:09.000000000 -0400 @@ -62,6 +62,14 @@ "GNOME_TomboyApplet.xml", "Tomboy", menu_verbs); + // This is needed as on mono-1.1.4, the whole + // applet gets reaped, including needed menu_verbs + GLib.Timeout.Add(1000, new GLib.TimeoutHandler(ImALIVE)); + } + + bool ImALIVE() + { + return true; } void ShowPreferencesVerb ()