blob: 8b753eea83b874f29f9d7880314fde0ed385f1e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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 ()
|