summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-07-03 08:11:17 -0300
committerJesusaves <cpntb1@ymail.com>2023-07-03 08:11:17 -0300
commit2e96cb1fbc811e1764f24962122c5d33c1d51ac9 (patch)
tree39014d6314f8513287dc9ba29c0e27db9c0123ca
parenta4a6fe440f347c3375064ca431545256b68aa0fc (diff)
downloadrenpy-2e96cb1fbc811e1764f24962122c5d33c1d51ac9.tar.gz
renpy-2e96cb1fbc811e1764f24962122c5d33c1d51ac9.tar.bz2
renpy-2e96cb1fbc811e1764f24962122c5d33c1d51ac9.tar.xz
renpy-2e96cb1fbc811e1764f24962122c5d33c1d51ac9.zip
Tweak a minor display bug in Auto Login setting
-rw-r--r--game/screens.rpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/screens.rpy b/game/screens.rpy
index f287432..290f11d 100644
--- a/game/screens.rpy
+++ b/game/screens.rpy
@@ -728,7 +728,7 @@ screen preferences():
action Function(renpy.call_in_new_context, "savevm")
null height 12
showif not persistent.steam:
- textbutton _("Auto-Login %s" % ifte(persistent.autologin is not None, _("ON"), _("OFF"))):
+ textbutton _("Auto-Login %s" % ifte(persistent.autologin is True, _("ON"), _("OFF"))):
action ToggleVariable("persistent.autologin")
showif not main_menu:
textbutton _("Check Updates"):