Merge branch 'fix'

This commit is contained in:
Ren'Py Bot
2025-02-01 04:30:40 -05:00
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1502,7 +1502,7 @@ interface_layer = "screens"
limit_transform_crop = False
# Should as dissolve shrink to the size of the smallest child?
dissolve_shrink = False
dissolve_shrinks = False
# Marking labels, images and audio in replays as seen is not allowed.
no_replay_seen = False
+3 -3
View File
@@ -383,7 +383,7 @@ class Dissolve(Transition):
bottom = render(self.old_widget, width, height, st, at)
top = render(self.new_widget, width, height, st, at)
if renpy.config.dissolve_shrink:
if renpy.config.dissolve_shrinks:
width = min(top.width, bottom.width)
height = min(top.height, bottom.height)
else:
@@ -552,7 +552,7 @@ class ImageDissolve(Transition):
bottom = render(self.old_widget, width, height, st, at)
top = render(self.new_widget, width, height, st, at)
if renpy.config.dissolve_shrink:
if renpy.config.dissolve_shrinks:
width = min(bottom.width, top.width, image.width)
height = min(bottom.height, top.height, image.height)
else:
@@ -680,7 +680,7 @@ class AlphaDissolve(Transition):
bottom = render(self.old_widget, width, height, st, at)
top = render(self.new_widget, width, height, st, at)
if renpy.config.dissolve_shrink:
if renpy.config.dissolve_shrinks:
width = min(bottom.width, top.width, image.width)
height = min(bottom.height, top.height, image.height)
else: