From a25ee43a81c4bbf94c1ed27402b7b5e44bc9f791 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Mon, 22 Apr 2024 17:28:48 +0200 Subject: [PATCH] Mark plugin as GTK3 type When using GTK2 as plugin type, Claws 4 does not automatically load the plugin upon start. With GTK3 this is fixed, and maildir is loaded automatically. --- src/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.c b/src/plugin.c index 510395f..815183f 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -70,7 +70,7 @@ const gchar *plugin_desc(void) const gchar *plugin_type(void) { - return "GTK2"; + return "GTK3"; } const gchar *plugin_licence(void) -- 2.30.2