From 33050d406ae3a4e38f56876f63804151f67b2b85 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Wed, 26 Mar 2025 04:07:49 +0100 Subject: [PATCH] do not show "no action on laucher is defined" when ctrl-click-release an object (with no mouse movement in intuitive interface) --- src/actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions.c b/src/actions.c index 419956cf..81dcfec7 100644 --- a/src/actions.c +++ b/src/actions.c @@ -1832,7 +1832,7 @@ void launcher(void) } else { /* no action defined --> warning */ const char *msg = "No action on launcher is defined (url or tclcommand)"; dbg(0, "%s\n", msg); - if(has_x) tclvareval("alert_ {", msg, "} {}", NULL); + /* if(has_x) tclvareval("alert_ {", msg, "} {}", NULL); */ /* commented, annoying */ } my_free(_ALLOC_ID_, &command); tcleval("after 300");