From f6c18cd03156b42e0b572d2a81100c1b6b6751c1 Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Wed, 14 Aug 2024 16:57:55 +0200 Subject: [PATCH] docs: Improve gtk_window_set_interactive_debugging() docs This function is recommended only if you override the default key shortcuts for the Inspector. --- gtk/gtkwindow.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index 630d028a30..7718bbf5a7 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -6284,11 +6284,12 @@ G_GNUC_END_IGNORE_DEPRECATIONS * and to useful debugging tools. * * This function allows applications that already use - * Ctrl+Shift+I (or D) for their - * own key shortcuts to add a different shortcut. If you are not overriding - * the default key shortcuts for the inspector, you should not be calling this - * function. For instance, adding a menu item to call this function isn’t - * recommended: the Inspector is a debugging and development tool. + * Ctrl+Shift+I + * (or Ctrl+Shift+D) + * for their own key shortcuts to add a different shortcut to open the Inspector. + * + * If you are not overriding the default key shortcuts for the Inspector, + * you should not use this function. */ void gtk_window_set_interactive_debugging (gboolean enable)