From d5be34058cdcef04083cec78b78f4e2931173683 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 2 Oct 2008 19:08:16 +0000 Subject: [PATCH] add "text" to the list of blacklisted operations. 2008-10-02 Sven Neumann * app/tools/gimpgegltool.c (gimp_gegl_tool_operation_blacklisted): add "text" to the list of blacklisted operations. svn path=/trunk/; revision=27114 --- ChangeLog | 5 +++++ app/tools/gimpgegltool.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e3ebe8b268..fe12135b82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-02 Sven Neumann + + * app/tools/gimpgegltool.c (gimp_gegl_tool_operation_blacklisted): + add "text" to the list of blacklisted operations. + 2008-10-02 Michael Natterer Bug 554646 – Opening Help crashes GIMP with lqr-plugin installed diff --git a/app/tools/gimpgegltool.c b/app/tools/gimpgegltool.c index e0b6d26ea4..87c6193add 100644 --- a/app/tools/gimpgegltool.c +++ b/app/tools/gimpgegltool.c @@ -226,7 +226,7 @@ gimp_gegl_tool_operation_blacklisted (const gchar *name) { static const gchar * const blacklist[] = { - "convert-format", "gimp-", "introspect", "stress" + "convert-format", "gimp-", "introspect", "stress", "text" }; gint i;