Various fixes

This commit is contained in:
2022-11-29 21:40:46 -03:00
parent 6b17972efe
commit 040cc7631f
52 changed files with 108 additions and 195 deletions

View File

@@ -116,7 +116,7 @@ init 2 python:
for x in data['tabs']:
tab_name = x['tab_name']
tab_name = _(x['tab_name'])
_eval = None
if 'eval' in x.keys():
_eval = x['eval']
@@ -319,6 +319,22 @@ screen view_movie(item, _origin):
key "game_menu" action [Hide('view_movie'), _origin ]
key "button_alternate" action [Hide('view_movie'), _origin ]
add item['item']
hbox:
style_prefix "quick"
xalign 0.5
yalign 0.975
if (ALLOW_ZOOM) and renpy.variant("small"):
use quick_buttons("gui/button/uioptionbuttons/template_idle.png",
[
[ "+", zoom_a_f ],
[ "-", zoom_b_f ],
[ "Return", zoom_b_f ]
] )
elif renpy.variant("small"):
use quick_buttons("gui/button/uioptionbuttons/template_idle.png",
[
[ "Return", _origin ]
] )
"""
view_image, Loads the image in fullscreen with viewport control.