From dc8ba756e4eedc476ab96fb575fd174cf1ab9639 Mon Sep 17 00:00:00 2001 From: Jehan Date: Sat, 15 Jul 2023 14:48:56 +0200 Subject: [PATCH] app: debug menu and playground should be visible on non-releases stable branch. These should be hidden on stable releases and shown on unstable branch. But we'll also want to show these in the stable branch, outside of release (typically when we'll be at 3.0.1). --- app/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.c b/app/main.c index f055af3f11..9cc8d7f975 100644 --- a/app/main.c +++ b/app/main.c @@ -147,7 +147,7 @@ static gboolean use_cpu_accel = TRUE; static gboolean console_messages = FALSE; static gboolean use_debug_handler = FALSE; -#ifdef GIMP_UNSTABLE +#if defined (GIMP_UNSTABLE) || ! defined (GIMP_RELEASE) static gboolean show_playground = TRUE; static gboolean show_debug_menu = TRUE; static GimpStackTraceMode stack_trace_mode = GIMP_STACK_TRACE_QUERY;