diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-02-02 18:12:22 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-02-04 23:23:15 +0100 |
commit | 4ad658f91ef615783f6aae5dac5b7997b237bd5c (patch) | |
tree | ba6d3b2a8e5d5e94d305c12bfcc8f7e42c86642b /testsuite | |
parent | b726f60f9039b647d6c6b7fe4f417923d65140a2 (diff) | |
download | gtk+-4ad658f91ef615783f6aae5dac5b7997b237bd5c.tar.gz |
a11y testsuite: Stop using gtk_widget_show_now
On non-windows, this doesn't do anything anyway.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/a11y/state/state-record.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/a11y/state/state-record.c b/testsuite/a11y/state/state-record.c index dd37c6233c..5f094dce20 100644 --- a/testsuite/a11y/state/state-record.c +++ b/testsuite/a11y/state/state-record.c @@ -109,7 +109,7 @@ do_action (GtkBuilder *builder, const gchar *action, GString *string) GObject *o; o = gtk_builder_get_object (builder, parts[1]); - gtk_widget_show_now (GTK_WIDGET (o)); + gtk_widget_show (GTK_WIDGET (o)); } else if (strcmp (parts[0], "focus") == 0) { |