diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-08 04:07:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-08 04:07:12 -0300 |
commit | 70af0220ba9dec5a19677a10ec924efe034314da (patch) | |
tree | d570915b665f7ef56144816a80e73e8909016b2c /game/screens.rpy | |
parent | fe939c80b53e28c22e8383bcafe6576263701f09 (diff) | |
download | renpy-2021.05.07.tar.gz renpy-2021.05.07.tar.bz2 renpy-2021.05.07.tar.xz renpy-2021.05.07.zip |
Connection core, still need to retrieve server credentials from Vaultv2021.05.07
Diffstat (limited to 'game/screens.rpy')
-rw-r--r-- | game/screens.rpy | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/game/screens.rpy b/game/screens.rpy index c364414..7025a88 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -648,13 +648,17 @@ screen preferences(): hbox: box_wrap True - if renpy.variant("pc") or renpy.variant("web"): - - vbox: - style_prefix "radio" + vbox: + style_prefix "radio" + if renpy.variant("pc") or renpy.variant("web"): label _("Display") textbutton _("Window") action Preference("display", "window") textbutton _("Fullscreen") action Preference("display", "fullscreen") + label _("Iconify") + textbutton ifte(persistent.iconify, + _("Enabled"), + _("Disabled")): + action ToggleVariable("persistent.iconify") vbox: style_prefix "radio" |