From e92ddbbece4467341d60cf3fe11ecc588c39604b Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 21 Sep 2023 17:59:34 -0700 Subject: [PATCH] Use shift-tab, not tab, to get to Try button in g-i-s live flow The latest version of g-i-s grew a "Previous" button on the final page, and hitting tab once now activates that, not the Try button. shift-tab *should* get us to Try on both old and new versions. Signed-off-by: Adam Williamson --- lib/utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.pm b/lib/utils.pm index aaaee796..d8e9f185 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -826,7 +826,7 @@ sub gnome_initial_setup { record_soft_failure "GOA screen not seen! Likely RHBZ #1997310"; } } - send_key "tab" if ($args{live} && $args{livetry}); + send_key "shift-tab" if ($args{live} && $args{livetry}); # on the 'live' flow, this will launch the installer send_key "ret"; # we don't want to do anything further on the 'live' flow