[gtk/matthiasc/for-master: 2/3] a11y: Only spew help once
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/matthiasc/for-master: 2/3] a11y: Only spew help once
- Date: Tue, 5 Jan 2021 16:16:50 +0000 (UTC)
commit 56af472cfc275adf6cd273db772ee7cafd9b284a
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Jan 5 11:15:33 2021 -0500
a11y: Only spew help once
Make GTK_A11Y=help only spew once, and avoid a warning
when we do.
gtk/gtkatcontext.c | 28 +++++++++++++++-------------
1 file changed, 15 insertions(+), 13 deletions(-)
---
diff --git a/gtk/gtkatcontext.c b/gtk/gtkatcontext.c
index 5866a2f279..87aa892dc2 100644
--- a/gtk/gtkatcontext.c
+++ b/gtk/gtkatcontext.c
@@ -541,25 +541,27 @@ gtk_at_context_create (GtkAccessibleRole accessible_role,
gtk_a11y_env = g_getenv ("GTK_A11Y");
if (gtk_a11y_env == NULL)
gtk_a11y_env = "0";
- }
- /* Short-circuit disabling the accessibility support */
- if (g_ascii_strcasecmp (gtk_a11y_env, "none") == 0)
- return NULL;
-
- if (g_ascii_strcasecmp (gtk_a11y_env, "help") == 0)
- {
- g_print ("Supported arguments for GTK_A11Y environment variable:\n");
+ if (g_ascii_strcasecmp (gtk_a11y_env, "help") == 0)
+ {
+ g_print ("Supported arguments for GTK_A11Y environment variable:\n");
#if defined(GDK_WINDOWING_X11) || defined(GDK_WINDOWING_WAYLAND)
- g_print (" atspi - Use the AT-SPI accessibility backend\n");
+ g_print (" atspi - Use the AT-SPI accessibility backend\n");
#endif
- g_print (" test - Use the test accessibility backend\n");
- g_print (" none - Disable the accessibility backend\n");
- g_print (" help - Print this help\n\n");
- g_print ("Other arguments will cause a warning and be ignored.\n");
+ g_print (" test - Use the test accessibility backend\n");
+ g_print (" none - Disable the accessibility backend\n");
+ g_print (" help - Print this help\n\n");
+ g_print ("Other arguments will cause a warning and be ignored.\n");
+
+ gtk_a11y_env = "0";
+ }
}
+ /* Short-circuit disabling the accessibility support */
+ if (g_ascii_strcasecmp (gtk_a11y_env, "none") == 0)
+ return NULL;
+
GtkATContext *res = NULL;
for (guint i = 0; i < G_N_ELEMENTS (a11y_backends); i++)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]