mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-07-23 10:55:45 +00:00
Update shortcut to launch desktop settings in KDE 6.3.90
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
9a9fe25b96
commit
e65c23b6f2
17
lib/utils.pm
17
lib/utils.pm
@ -1657,11 +1657,18 @@ sub solidify_wallpaper {
|
||||
# once to make this work
|
||||
# https://bugs.kde.org/show_bug.cgi?id=487715
|
||||
mouse_click;
|
||||
# Run the Desktop settings
|
||||
hold_key 'alt';
|
||||
send_key 'd';
|
||||
send_key 's';
|
||||
release_key 'alt';
|
||||
# Run the Desktop settings. shortcut changed from alt-d, alt-s
|
||||
# to ctrl-shift-d in 6.3.90, use release number as proxy
|
||||
my $relnum = get_release_number;
|
||||
if ($relnum > 42) {
|
||||
send_key 'ctrl-shift-d';
|
||||
}
|
||||
else {
|
||||
hold_key 'alt';
|
||||
send_key 'd';
|
||||
send_key 's';
|
||||
release_key 'alt';
|
||||
}
|
||||
# give the window a few seconds to stabilize
|
||||
wait_still_screen 3;
|
||||
# Select type of background
|
||||
|
Loading…
Reference in New Issue
Block a user