Skip to content

Commit 7e76934

Browse files
authored
Merge pull request #3431 from cmitu/wifi-osk
joy2key,wifi: add an on-screen keyboard dialog
2 parents 3880853 + d6cede7 commit 7e76934

File tree

3 files changed

+648
-14
lines changed

3 files changed

+648
-14
lines changed

scriptmodules/admin/joy2key.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ rp_module_section="core"
1515

1616
function _update_hook_joy2key() {
1717
# make sure joy2key is always updated when updating retropie-setup
18-
rp_isInstalled "$md_id" && install_bin_joy2key
18+
rp_isInstalled "$md_id" && rp_callModule "$md_id"
1919
}
2020

2121
function depends_joy2key() {
22-
local depends=()
22+
local depends=(python3-urwid)
2323
# 'python3-sdl2' might not be available
2424
# it's packaged in Debian starting with version 11 (Bullseye)
2525
local p_ver
@@ -33,7 +33,7 @@ function depends_joy2key() {
3333

3434
function install_bin_joy2key() {
3535
local file
36-
for file in "joy2key.py" "joy2key_sdl.py"; do
36+
for file in "joy2key.py" "joy2key_sdl.py" "osk.py"; do
3737
cp "$md_data/$file" "$md_inst/"
3838
chmod +x "$md_inst/$file"
3939
python3 -m compileall "$md_inst/$file"

0 commit comments

Comments
 (0)