Skip to content

Commit 99c860c

Browse files
fix(configure_game.py): fixed portable check box preference rememberance
fixed portable checkbox loading developer value instead of portable value Signed-off-by: Mythical-Github <MythicalData@gmail.com>
1 parent 5c4fbd5 commit 99c860c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assets/to_do_list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ Next:
22

33
# automated releases pack windows exe into the linux release somehow, fix this
44
# fix installs that only have ue4ss files
5-
# sometimes it doesn't properly remember the preferences of the checkboxes, probably related to force toggling off standard/portable
65
# bring back keep mods and settings and make uninstall more robust
76

87

@@ -16,3 +15,4 @@ Maybes:
1615

1716
# async dir scan/loading screen
1817
# option to configure a specific ue4ss installation, like toggline mods, ini values, etc...
18+
# theming

src/ue4ss_installer_gui/screens/configure_game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def push_configure_game_screen(sender, app_data, user_data):
566566

567567
with dpg.group(horizontal=True, parent="configure_game_modal"):
568568
dpg.add_checkbox(
569-
default_value=game_info.using_developer_version,
569+
default_value=game_info.using_portable_version,
570570
tag="portable_version_check_box",
571571
callback=on_portable_version_check_box_toggled,
572572
user_data=user_data,

0 commit comments

Comments
 (0)