blob: 9444616e15570a01c46cf987643f5c1f4d2fd646 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- app/actions/debug-actions.c.orig 2019-10-26 18:49:18 UTC
+++ app/actions/debug-actions.c
@@ -98,4 +98,10 @@ void
debug_actions_update (GimpActionGroup *group,
gpointer data)
{
+#define SET_SENSITIVE(action,condition) \
+ gimp_action_group_set_action_sensitive (group, action, (condition) != 0)
+
+ SET_SENSITIVE ("debug-show-image-graph", gegl_has_operation ("gegl:introspect"));
+
+#undef SET_SENSITIVE
}
|